Commit message (Collapse) | Author | Age | ||
---|---|---|---|---|
... | ||||
* | Adjust postgres_fdw's search path handling. | Tom Lane | 2013-02-22 | |
| | | | | | | | | | | | Set the remote session's search path to exactly "pg_catalog" at session start, then schema-qualify only names that aren't in that schema. This greatly reduces clutter in the generated SQL commands, as seen in the regression test changes. Per discussion. Also, rethink use of FirstNormalObjectId as the "built-in object" cutoff --- FirstBootstrapObjectId is safer, since the former will accept objects in information_schema for instance. | |||
* | 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 |