[COMMITTERS] pgsql: Add contrib/file_fdw foreign-data wrapper for reading files via

2011-02-20 Thread Tom Lane
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

[COMMITTERS] pgsql: Minor logic fix for new levenshtein implementation.

2011-02-20 Thread Tom Lane
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

[COMMITTERS] pgsql: Merge two documentation permission chapters into a single chapte

2011-02-20 Thread Bruce Momjian
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

[COMMITTERS] pgsql: Add ENCODING option to COPY TO/FROM and file_fdw.

2011-02-20 Thread Itagaki Takahiro
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

Re: [COMMITTERS] pgsql: Add ENCODING option to COPY TO/FROM and file_fdw.

2011-02-20 Thread Tom Lane
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.

[COMMITTERS] pgsql: Fix pg_server_to_client, that was broken in the previous commit.

2011-02-20 Thread Itagaki Takahiro
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

Re: [COMMITTERS] pgsql: Add ENCODING option to COPY TO/FROM and file_fdw.

2011-02-20 Thread Itagaki Takahiro
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