[COMMITTERS] pgsql: Make the MONEY data type have a thousands separator != decimal

2007-11-24 Thread Bruce Momjian
Log Message: --- Make the MONEY data type have a thousands separator != decimal symbol, if the locale has the thousands separator as "". This now matches the to_char and psql numericlocale behavior. (Previously this data type was basically useless for such setups.) Modified Files: --

[COMMITTERS] press - pr: alpha version

2007-11-24 Thread User Doudou586
Log Message: --- alpha version Added Files: --- pr/releases/8.3/zh_CN: release.txt (r1.1) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/press/pr/releases/8.3/zh_CN/release.txt?rev=1.1&content-type=text/x-cvsweb-markup) ---(end of broadca

[COMMITTERS] pgsql: Clarify how MONEY trims off trailing thousands separator.

2007-11-24 Thread Bruce Momjian
Log Message: --- Clarify how MONEY trims off trailing thousands separator. Modified Files: -- pgsql/src/backend/utils/adt: cash.c (r1.76 -> r1.77) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/adt/cash.c?r1=1.76&r2=1.77) -

[COMMITTERS] pgsql: If pg_dump drops a schema, make sure 'search_path' it SET the

2007-11-24 Thread Bruce Momjian
Log Message: --- If pg_dump drops a schema, make sure 'search_path' it SET the next time it is needed --- basically don't remember the previous 'search_path' after a drop schema because it might have failed but be created later. Modified Files: -- pgsql/src/bin/pg_dump:

[COMMITTERS] pgsql: Save another little bit of planner overhead on simple queries, by

2007-11-24 Thread Tom Lane
Log Message: --- Save another little bit of planner overhead on simple queries, by having clauselist_selectivity skip some analysis that's useless when there's only one clause in the given list. Actually this can win even for not-so-simple queries, because we also apply clauselist_selectiv

[COMMITTERS] pgbouncer - pgbouncer: fix from -stable: if client has params but server

2007-11-24 Thread User Mkz
Log Message: --- fix from -stable: if client has params but server not, re-SET Modified Files: -- pgbouncer/src: varcache.c (r1.9 -> r1.10) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgbouncer/pgbouncer/src/varcache.c.diff?r1=1.9&r2=1.10) ---

[COMMITTERS] pgsql: Add regression tests for MONEY type.

2007-11-24 Thread D'Arcy J.M. Cain
Log Message: --- Add regression tests for MONEY type. Modified Files: -- pgsql/src/test/regress: parallel_schedule (r1.45 -> r1.46) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/test/regress/parallel_schedule?r1=1.45&r2=1.46) pgsql/src/test/regr

[COMMITTERS] pgsql: Move resetting of currSchema to a spot where it's not vulnerable

2007-11-24 Thread Tom Lane
Log Message: --- Move resetting of currSchema to a spot where it's not vulnerable to getting missed in possible future partial-drop scenarios. Improve comment. Per report from Zoltan Boszormenyi. Modified Files: -- pgsql/src/bin/pg_dump: pg_backup_archiver.c (r1.15

[COMMITTERS] pgsql: Add missed entry for new money regression test.

2007-11-24 Thread Tom Lane
Log Message: --- Add missed entry for new money regression test. Modified Files: -- pgsql/src/test/regress: serial_schedule (r1.42 -> r1.43) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/test/regress/serial_schedule?r1=1.42&r2=1.43) ---

[COMMITTERS] pgsql: Slightly more paranoia and slightly better comments for use of

2007-11-24 Thread Tom Lane
Log Message: --- Slightly more paranoia and slightly better comments for use of Windows-specific MultiByteToWideChar/WideCharToMultiByte calls. Modified Files: -- pgsql/src/backend/utils/adt: oracle_compat.c (r1.74 -> r1.75) (http://developer.postgresql.org

[COMMITTERS] pgsql: Fix (I think) broken usage of MultiByteToWideChar.

2007-11-24 Thread Tom Lane
Log Message: --- Fix (I think) broken usage of MultiByteToWideChar. I had missed the subtlety that this function only returns a null terminator if it's fed input that includes one; which, in the usage here, it's not. This probably fixes bugs reported by Thomas Haegi. Modified Files: -

[COMMITTERS] pgsql: Reduce routine successful-archiving message from LOG to DEBUG1

2007-11-24 Thread Tom Lane
Log Message: --- Reduce routine successful-archiving message from LOG to DEBUG1 grade, to reduce chattiness of logs. Per discussion. Simon Riggs Modified Files: -- pgsql/src/backend/postmaster: pgarch.c (r1.32 -> r1.33) (http://developer.postgresql.org/cvs

[COMMITTERS] pgsql: Fix thinko in comment.

2007-11-24 Thread Tom Lane
Log Message: --- Fix thinko in comment. Modified Files: -- pgsql/src/backend/catalog: namespace.c (r1.101 -> r1.102) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/catalog/namespace.c?r1=1.101&r2=1.102) ---(end of bro