Re: FDW for PostgreSQL
Merlin Moncure <mmoncure@gmail.com>
From: Merlin Moncure <mmoncure@gmail.com>
To: Shigeru HANADA <shigeru.hanada@gmail.com>
Cc: PostgreSQL-development <pgsql-hackers@postgresql.org>
Date: 2012-10-04T01:44:00Z
Lists: pgsql-hackers
On Fri, Sep 14, 2012 at 9:25 AM, Shigeru HANADA <shigeru.hanada@gmail.com> wrote: > Hi all, > > I'd like to propose FDW for PostgreSQL as a contrib module again. > Attached patch is updated version of the patch proposed in 9.2 > development cycle. very nice. > - binary transfer (only against servers with same PG major version?) Unfortunately this is not enough -- at least not without some additional work. The main problem is user defined types, especially composites. Binary wire format sends internal member oids which the receiving server will have to interpret. merlin