Add contrib/file_fdw foreign-data wrapper for reading files via COPY.
This is both very useful in its own right, and an important test case
for the core FDW support.
This commit includes a small refactoring of copy.c to expose its option
checking code as a separately callable function. The origi
Minor logic fix for new levenshtein implementation.
Alexander Korotkov
Branch
--
master
Details
---
http://git.postgresql.org/pg/commitdiff/087bd179e63f199105dabc8be0c8aebd087a178e
Modified Files
--
contrib/fuzzystrmatch/Makefile |3 +++
contrib/fuzzystrmatch/levensh
Merge two documentation permission chapters into a single chapter.
Branch
--
master
Details
---
http://git.postgresql.org/pg/commitdiff/48d25bac9f024f36b43cbba58778adf9ad0207c6
Modified Files
--
doc/src/sgml/ddl.sgml| 48 +---
doc/src/sgml/user-ma
Add ENCODING option to COPY TO/FROM and file_fdw.
File encodings can be specified separately from client encoding.
If not specified, client encoding is used for backward compatibility.
Cases when the encoding doesn't match client encoding are slower
than matched cases because we don't have convers
Itagaki Takahiro writes:
> Add ENCODING option to COPY TO/FROM and file_fdw.
> File encodings can be specified separately from client encoding.
> If not specified, client encoding is used for backward compatibility.
The buildfarm thinks this patch broke contrib/unaccent.
Fix pg_server_to_client, that was broken in the previous commit.
Branch
--
master
Details
---
http://git.postgresql.org/pg/commitdiff/ca9cf85d54ec08f37edb37341ad8ee1f20211458
Modified Files
--
src/backend/utils/mb/mbutils.c |2 +-
1 files changed, 1 insertions(+), 1 deleti
On Mon, Feb 21, 2011 at 15:12, Tom Lane wrote:
> Itagaki Takahiro writes:
>> Add ENCODING option to COPY TO/FROM and file_fdw.
>> File encodings can be specified separately from client encoding.
>> If not specified, client encoding is used for backward compatibility.
>
> The buildfarm thinks this