[COMMITTERS] pgsql: Remove 13 keywords that are used only for ROLE options.

2011-03-15 Thread Robert Haas
Remove 13 keywords that are used only for ROLE options. Review by Tom Lane. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/5ca4dfc79f21828174de3a8bc7d29718d0c52c34 Modified Files -- src/backend/parser/gram.y | 132 +++-

[COMMITTERS] psqlodbc - psqlodbc: Convert large integer strings properly.

2011-03-15 Thread User Hinoue
Log Message: --- Convert large integer strings properly. Modified Files: -- psqlodbc: convert.c (r1.193 -> r1.194) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/psqlodbc/psqlodbc/convert.c?r1=1.193&r2=1.194) version.h (r1.186 -> r1.187) (htt

[COMMITTERS] pgsql: Minor sync rep documentation improvements.

2011-03-15 Thread Robert Haas
Minor sync rep documentation improvements. - Make the name of the ID tag for the GUC entry match the GUC name. - Clarify that synchronous_replication waits for xlog flush, not receipt. - Mention that synchronous_replication won't wait if max_wal_senders=0. Branch -- master Details --- ht

[COMMITTERS] pgsql: Add database comments to template0 and postgres databases, and i

2011-03-15 Thread Bruce Momjian
Add database comments to template0 and postgres databases, and improve the comments on the template1 database. No catalog version bump because they are just comments. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/ddd6ff289f2512f881493b7793853a96955459ff Modified F

[COMMITTERS] pgsql: Wording adjustment for restart_after_crash entry

2011-03-15 Thread Bruce Momjian
Wording adjustment for restart_after_crash entry Specifically, mention that "restart" is disabled by this parameter. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/df4a9595c20ccd3d3b4ce0e638ca1a5e82546a97 Modified Files -- doc/src/sgml/config.sgml |

[COMMITTERS] pgsql: Fix spelling error in fuzzystrmatch docs.

2011-03-15 Thread Bruce Momjian
Fix spelling error in fuzzystrmatch docs. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/b774efa9d57a02fbd64dafbe55a059253fbfda4e Modified Files -- doc/src/sgml/fuzzystrmatch.sgml |2 +- 1 files changed, 1 insertions(+), 1 deletions(-) -- Sent via

[COMMITTERS] pgsql: Add hint suggesting the use of EXECUTE CREATE TABLE ... AS for E

2011-03-15 Thread Bruce Momjian
Add hint suggesting the use of EXECUTE CREATE TABLE ... AS for EXECUTE INTO. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/2b8364de698b0b425e5d8631a63c91387ee098ef Modified Files -- src/pl/plpgsql/src/pl_exec.c |2 +- 1 files changed, 1 insertions(+)

[COMMITTERS] pgsql: Adjust doc wording about the casting exceptions for composite ty

2011-03-15 Thread Bruce Momjian
Adjust doc wording about the casting exceptions for composite types. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/a858ca19df1491a5082864335efb0fe08e27e960 Modified Files -- doc/src/sgml/ref/create_cast.sgml |2 +- 1 files changed, 1 insertions(+), 1

[COMMITTERS] pgsql: Remove unused copy_dir() function from pg_upgrade.

2011-03-15 Thread Bruce Momjian
Remove unused copy_dir() function from pg_upgrade. Branch -- master Details --- http://git.postgresql.org/pg/commitdiff/898a14e1a0ba845c957f42f205495af932fcf017 Modified Files -- contrib/pg_upgrade/file.c | 97 - 1 files changed, 0

[COMMITTERS] pgsql: Improve handling of unknown-type literals in UNION/INTERSECT/EXC

2011-03-15 Thread Tom Lane
Improve handling of unknown-type literals in UNION/INTERSECT/EXCEPT. This patch causes unknown-type Consts to be coerced to the resolved output type of the set operation at parse time. Formerly such Consts were left alone until late in the planning stage. The disadvantage of that approach is tha