[COMMITTERS] pgsql: Easier to translate psql help Instead of requiring translators

2009-09-17 Thread Peter Eisentraut
Log Message: --- Easier to translate psql help Instead of requiring translators to translate the entire SQL command synopses, change create_help.pl to only require them to translate the placeholders, and paste those into the synopsis using a printf mechanism. Make some small updates to the

[COMMITTERS] pgsql: CSV NULL Documentation Update docs to clearly explain NULL value

2009-09-17 Thread Bruce Momjian
Log Message: --- CSV NULL Documentation Update docs to clearly explain NULL value matching behavior, per Andrew. Backpatch to 8.4.X. Tags: REL8_4_STABLE Modified Files: -- pgsql/doc/src/sgml/ref: copy.sgml (r1.85.2.1 -> r1.85.2.2) (http://anoncvs.po

[COMMITTERS] pgsql: CSV NULL Documentation Update docs to clearly explain NULL value

2009-09-17 Thread Bruce Momjian
Log Message: --- CSV NULL Documentation Update docs to clearly explain NULL value matching behavior, per Andrew. Backpatch to 8.4.X. Modified Files: -- pgsql/doc/src/sgml/ref: copy.sgml (r1.88 -> r1.89) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/

[COMMITTERS] pgsql: CVS NULL Documentation Clearify documentation of CVS's output of

2009-09-17 Thread Bruce Momjian
Log Message: --- CVS NULL Documentation Clearify documentation of CVS's output of NULL values, per suggestion from Magnus. Backpatch to 8.4.X. Tags: REL8_4_STABLE Modified Files: -- pgsql/doc/src/sgml/ref: copy.sgml (r1.85 -> r1.85.2.1) (http://anon

[COMMITTERS] pgsql: Improve wording of error message when a postgresql.conf setting

2009-09-17 Thread Peter Eisentraut
Log Message: --- Improve wording of error message when a postgresql.conf setting is ignored because it can only be set at server start. In particular, hiding the main reason in the detail message was suboptimal. Modified Files: -- pgsql/src/backend/utils/misc: guc-

[COMMITTERS] pgsql: CVS NULL Documentation Clearify documentation of CVS's output of

2009-09-17 Thread Bruce Momjian
Log Message: --- CVS NULL Documentation Clearify documentation of CVS's output of NULL values, per suggestion from Magnus. Backpatch to 8.4.X. Modified Files: -- pgsql/doc/src/sgml/ref: copy.sgml (r1.87 -> r1.88) (http://anoncvs.postgresql.org/cvsweb.cgi/

[COMMITTERS] pgsql: When reloading postgresql.conf, log what parameters actually

2009-09-17 Thread Peter Eisentraut
Log Message: --- When reloading postgresql.conf, log what parameters actually changed Modified Files: -- pgsql/src/backend/utils/misc: guc-file.l (r1.59 -> r1.60) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/misc/guc-file.l?r1=1.59&r2=1

[COMMITTERS] pgsql: Implement "join removal" for cases where the inner side of a left

2009-09-17 Thread Tom Lane
Log Message: --- Implement "join removal" for cases where the inner side of a left join is unique and is not referenced above the join. In this case the inner side doesn't affect the query result and can be thrown away entirely. Although perhaps nobody would ever write such a thing by hand