[COMMITTERS] psqlodbc - psqlodbc: add the change history.

2012-08-11 Thread Hiroshi Saito
Log Message: --- add the change history. Modified Files: -- psqlodbc/docs: release.html (r1.86 - r1.87) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/psqlodbc/psqlodbc/docs/release.html?r1=1.86r2=1.87) - Sent via pgsql-committers mailing list

[COMMITTERS] pgsql: Fix dependencies generated during ALTER TABLE ADD CONSTRAINT USI

2012-08-11 Thread Tom Lane
Fix dependencies generated during ALTER TABLE ADD CONSTRAINT USING INDEX. This command generated new pg_depend entries linking the index to the constraint and the constraint to the table, which match the entries made when a unique or primary key constraint is built de novo. However, it did not

[COMMITTERS] pgsql: Fix dependencies generated during ALTER TABLE ADD CONSTRAINT USI

2012-08-11 Thread Tom Lane
Fix dependencies generated during ALTER TABLE ADD CONSTRAINT USING INDEX. This command generated new pg_depend entries linking the index to the constraint and the constraint to the table, which match the entries made when a unique or primary key constraint is built de novo. However, it did not

[COMMITTERS] pgsql: Fix dependencies generated during ALTER TABLE ADD CONSTRAINT USI

2012-08-11 Thread Tom Lane
Fix dependencies generated during ALTER TABLE ADD CONSTRAINT USING INDEX. This command generated new pg_depend entries linking the index to the constraint and the constraint to the table, which match the entries made when a unique or primary key constraint is built de novo. However, it did not

[COMMITTERS] pgsql: Add link from COPY ref page to psql \copy.

2012-08-11 Thread Tom Lane
Add link from COPY ref page to psql \copy. Jeff Janes Branch -- REL9_2_STABLE Details --- http://git.postgresql.org/pg/commitdiff/ce36ecda518397122045e1a0953c465446b19d47 Modified Files -- doc/src/sgml/ref/copy.sgml |2 +- doc/src/sgml/ref/psql-ref.sgml |2 +- 2

[COMMITTERS] pgsql: Add link from COPY ref page to psql \copy.

2012-08-11 Thread Tom Lane
Add link from COPY ref page to psql \copy. Jeff Janes Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/83af58f6b5657840f5924332fccecca1e3556abe Modified Files -- doc/src/sgml/ref/copy.sgml |2 +- doc/src/sgml/ref/psql-ref.sgml |2 +- 2 files

[COMMITTERS] pgsql: Fix some issues with LATERAL(SELECT UNION ALL SELECT).

2012-08-11 Thread Tom Lane
Fix some issues with LATERAL(SELECT UNION ALL SELECT). The LATERAL marking has to be propagated down to the UNION leaf queries when we pull them up. Also, fix the formerly stubbed-off set_append_rel_pathlist(). It does already have enough smarts to cope with making a parameterized Append path