[COMMITTERS] pgsql: Move relpath() to libpgcommon

2013-02-21 Thread Alvaro Herrera
Move relpath() to libpgcommon This enables non-backend code, such as pg_xlogdump, to use it easily. The previous location, in src/backend/catalog/catalog.c, made that essentially impossible because that file depends on many backend-only facilities; so this needs to live separately. Branch --

[COMMITTERS] pgsql: Remove useless variable

2013-02-21 Thread Alvaro Herrera
Remove useless variable Per Jeff Janes Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/6e3fd964632e95c7359457b7d67aa20c72a71679 Modified Files -- src/backend/postmaster/pgstat.c | 11 +++ 1 files changed, 7 insertions(+), 4 deletions(-) -- Se

[COMMITTERS] pgsql: Need to decorate XactIsoLevel as PGDLLIMPORT for postgres_fdw.

2013-02-21 Thread Tom Lane
Need to decorate XactIsoLevel as PGDLLIMPORT for postgres_fdw. Per buildfarm. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/54a278683531edac535e6aa4d5427799409823f1 Modified Files -- contrib/postgres_fdw/connection.c |2 +- src/include/access/xact.h

[COMMITTERS] pgsql: Teach MSVC build system about postgres_fdw.

2013-02-21 Thread Tom Lane
Teach MSVC build system about postgres_fdw. Per buildfarm. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/699d70b2ec2cb6dc07f6c5b2876609301ddd20a8 Modified Files -- src/tools/msvc/Mkvcbuild.pm |2 +- 1 files changed, 1 insertions(+), 1 deletions(-)

[COMMITTERS] pgsql: Add postgres_fdw contrib module.

2013-02-21 Thread Tom Lane
Add postgres_fdw contrib module. There's still a lot of room for improvement, but it basically works, and we need this to be present before we can do anything much with the writable-foreign-tables patch. So let's commit it and get on with testing. Shigeru Hanada, reviewed by KaiGai Kohei and Tom