Commit message (Collapse) | Author | Age | |
---|---|---|---|
* | Get rid of postgres_fdw's assumption that remote type OIDs match ours. | Tom Lane | 2013-02-22 |
| | | | | | | | | The only place we depended on that was in sending numeric type OIDs in PQexecParams; but we can replace that usage with explicitly casting each Param symbol in the query string, so that the types are specified to the remote by name not OID. This makes no immediate difference but will be essential if we ever hope to support use of non-builtin types. | ||
* | Add postgres_fdw contrib module. | Tom Lane | 2013-02-21 |
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 |