Add postgres_fdw contrib module.
authorTom Lane <tgl@sss.pgh.pa.us>
Thu, 21 Feb 2013 10:26:23 +0000 (05:26 -0500)
committerTom Lane <tgl@sss.pgh.pa.us>
Thu, 21 Feb 2013 10:27:16 +0000 (05:27 -0500)
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 Lane

28 files changed:
contrib/Makefile
contrib/postgres_fdw/.gitignore [new file with mode: 0644]
contrib/postgres_fdw/Makefile [new file with mode: 0644]
contrib/postgres_fdw/connection.c [new file with mode: 0644]
contrib/postgres_fdw/deparse.c [new file with mode: 0644]
contrib/postgres_fdw/expected/postgres_fdw.out [new file with mode: 0644]
contrib/postgres_fdw/option.c [new file with mode: 0644]
contrib/postgres_fdw/postgres_fdw--1.0.sql [new file with mode: 0644]
contrib/postgres_fdw/postgres_fdw.c [new file with mode: 0644]
contrib/postgres_fdw/postgres_fdw.control [new file with mode: 0644]
contrib/postgres_fdw/postgres_fdw.h [new file with mode: 0644]