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
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
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/
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
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-
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/
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
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