[COMMITTERS] pg-migrator - src: Update port default values in --help.

2009-02-11 Thread User Bmomjian
Log Message: --- Update port default values in --help. Modified Files: -- src: pg_migrator.c (r1.41 -> r1.42) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pg-migrator/src/pg_migrator.c.diff?r1=1.41&r2=1.42) -- Sent via pgsql-committers mailing list (pgsql

[COMMITTERS] pg-migrator - src: Rename function.

2009-02-11 Thread User Bmomjian
Log Message: --- Rename function. Modified Files: -- src: pg_migrator.c (r1.40 -> r1.41) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pg-migrator/src/pg_migrator.c.diff?r1=1.40&r2=1.41) -- Sent via pgsql-committers mailing list (pgsql-committers@postgresq

[COMMITTERS] pg-migrator - src: Properly set the default pgport value just like libpq

2009-02-11 Thread User Bmomjian
Log Message: --- Properly set the default pgport value just like libpq does. Modified Files: -- src: pg_migrator.c (r1.39 -> r1.40) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pg-migrator/src/pg_migrator.c.diff?r1=1.39&r2=1.40) -- Sent via pgsql-committe

[COMMITTERS] orafce - orafce: Uninstall the dual table with DROP VIEW.

2009-02-11 Thread User Itagaki
Log Message: --- Uninstall the dual table with DROP VIEW. Modified Files: -- orafce: uninstall_orafunc.sql (r1.5 -> r1.6) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/uninstall_orafunc.sql.diff?r1=1.5&r2=1.6) -- Sent via pgsql-committers mai

[COMMITTERS] pg-migrator - src: Clean up argument names; pgindent run.

2009-02-11 Thread User Bmomjian
Log Message: --- Clean up argument names; pgindent run. Modified Files: -- src: pg_migrator.c (r1.38 -> r1.39) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pg-migrator/src/pg_migrator.c.diff?r1=1.38&r2=1.39) -- Sent via pgsql-committers mailing list (pgsq

[COMMITTERS] pg-migrator - src: Adjust connectToServer() to consistently use new

2009-02-11 Thread User Bmomjian
Log Message: --- Adjust connectToServer() to consistently use new port/user specifications. Modified Files: -- src: pg_migrator.c (r1.37 -> r1.38) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pg-migrator/src/pg_migrator.c.diff?r1=1.37&r2=1.38) -- Sent via

[COMMITTERS] pg-migrator - src: Add support for old/new superuser specification.

2009-02-11 Thread User Bmomjian
Log Message: --- Add support for old/new superuser specification. Modified Files: -- src: pg_migrator.c (r1.36 -> r1.37) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pg-migrator/src/pg_migrator.c.diff?r1=1.36&r2=1.37) -- Sent via pgsql-committers mailing

[COMMITTERS] pgsql: Change ALTER TABLE SET WITHOUT OIDS to rewrite the whole table to

2009-02-11 Thread Tom Lane
Log Message: --- Change ALTER TABLE SET WITHOUT OIDS to rewrite the whole table to physically get rid of the OID column. This eliminates the problem discovered by Heikki back in November that 8.4's suppression of "unnecessary" junk filtering in INSERT/SELECT could lead to an Assert failure

[COMMITTERS] pgsql: Tweak configure to attempt to add -qnoansialias to CFLAGS

2009-02-11 Thread Tom Lane
Log Message: --- Tweak configure to attempt to add -qnoansialias to CFLAGS whenever running on AIX with a non-gcc compiler. The previous coding would do this only if CC was exactly "xlc"; which is a bad idea, as demonstrated by trouble report from Mihai Criveti. Modified Files: --

[COMMITTERS] pgsql: Improve psql \d+ to show TOAST reloptions too.

2009-02-11 Thread Alvaro Herrera
Log Message: --- Improve psql \d+ to show TOAST reloptions too. Per complaint from ITAGAKI Takahiro. Modified Files: -- pgsql/src/bin/psql: describe.c (r1.198 -> r1.199) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/psql/describe.c?r1=1.198&r2=1.

[COMMITTERS] libpqtypes - libpqtypes: Fixed empty array issue, getf always returned a

2009-02-11 Thread User Achernow
Log Message: --- Fixed empty array issue, getf always returned a result with a single tuple but it should have been zero. Added a regression-test for empty arrays. Updated configure to reflect new release 1.3.1. Modified Files: -- libpqtypes: ChangeLog (r1.23 ->

[COMMITTERS] pgsql: Only unset the locale environment when --no-locale is used (the

2009-02-11 Thread Peter Eisentraut
Log Message: --- Only unset the locale environment when --no-locale is used (the way it was presumably designed, but didn't act). This allows running the temp install tests in a non-C locale, thus exercising users' real environments better. Document how to change locales for test runs. Mo