[COMMITTERS] textsearch-ja - textsearch_senna: Implements restrict selectivity

2009-05-07 Thread User Itagaki
Log Message: --- Implements restrict selectivity function for %% and @@ operators. The result records are cached in planner, and reused in executor. There are no additonal index scans as long as index scan is used (not seq scan). Modified Files: -- textsearch_senna:

[COMMITTERS] pgsql: Request XLOG switch before writing checkpoint in

2009-05-07 Thread Heikki Linnakangas
Log Message: --- Request XLOG switch before writing checkpoint in pg_start_backup(). Otherwise you can end up with an unrecoverable backup if you start a new base backup right after finishing archive recovery. In that scenario, the redo pointer of the checkpoint that pg_start_backup() write

[COMMITTERS] pgsql: Request XLOG switch before writing checkpoint in

2009-05-07 Thread Heikki Linnakangas
Log Message: --- Request XLOG switch before writing checkpoint in pg_start_backup(). Otherwise you can end up with an unrecoverable backup if you start a new base backup right after finishing archive recovery. In that scenario, the redo pointer of the checkpoint that pg_start_backup() write

[COMMITTERS] pgsql: Request XLOG switch before writing checkpoint in

2009-05-07 Thread Heikki Linnakangas
Log Message: --- Request XLOG switch before writing checkpoint in pg_start_backup(). Otherwise you can end up with an unrecoverable backup if you start a new base backup right after finishing archive recovery. In that scenario, the redo pointer of the checkpoint that pg_start_backup() write

[COMMITTERS] pginstaller - pginst: Correctly set the domain name on DCs

2009-05-07 Thread Dave Page
Log Message: --- Correctly set the domain name on DCs Modified Files: -- pginst/ca: pginstca.c (r1.131 -> r1.132) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pginstaller/pginst/ca/pginstca.c.diff?r1=1.131&r2=1.132) -- Sent via pgsql-committers mailing li

[COMMITTERS] pginstaller - pginst: Correctly set the domain name on DCs

2009-05-07 Thread Dave Page
Log Message: --- Correctly set the domain name on DCs Tags: REL8_3_STABLE Modified Files: -- pginst/ca: pginstca.c (r1.119.2.9 -> r1.119.2.10) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pginstaller/pginst/ca/pginstca.c.diff?r1=1.119.2.9&r2=1.119.2.1

[COMMITTERS] pginstaller - web: Note the updated PL version numbers used in 8.4.

2009-05-07 Thread Dave Page
Log Message: --- Note the updated PL version numbers used in 8.4. Modified Files: -- web: index.html (r1.13 -> r1.14) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pginstaller/web/index.html.diff?r1=1.13&r2=1.14) -- Sent via pgsql-committers mailing list (

[COMMITTERS] pginstaller - web: Clarify that the SERVICEDOMAIN property must be set

2009-05-07 Thread Dave Page
Log Message: --- Clarify that the SERVICEDOMAIN property must be set to the domain name if installing on a DC. Modified Files: -- web: silent.html (r1.12 -> r1.13) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pginstaller/web/silent.html.diff?r1=1.12&r2=1.1

[COMMITTERS] pg-migrator - pg_migrator: Fix compiler warning.

2009-05-07 Thread User Bmomjian
Log Message: --- Fix compiler warning. Modified Files: -- pg_migrator/src: info.c (r1.6 -> r1.7) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pg-migrator/pg_migrator/src/info.c.diff?r1=1.6&r2=1.7) -- Sent via pgsql-committers mailing list (pgsql-committer

[COMMITTERS] pg-migrator - pg_migrator: #ifdef out PAGE_CONVERSION code; not needed

2009-05-07 Thread User Bmomjian
Log Message: --- #ifdef out PAGE_CONVERSION code; not needed for 8.4 and needs pg_dlopen which requires special handling on OpenBSD. Modified Files: -- pg_migrator/src: file.c (r1.4 -> r1.5) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pg-migrator/pg_migrat

[COMMITTERS] pg-migrator - pg_migrator: Update developer information.

2009-05-07 Thread User Bmomjian
Log Message: --- Update developer information. Modified Files: -- pg_migrator: DEVELOPERS (r1.1 -> r1.2) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pg-migrator/pg_migrator/DEVELOPERS.diff?r1=1.1&r2=1.2) -- Sent via pgsql-committers mailing list (pgsql-c

[COMMITTERS] pgsql: Ooops ...

2009-05-07 Thread Tom Lane
Log Message: --- Ooops ... make_outerjoininfo wasn't actually enforcing the join order restrictions specified for semijoins in optimizer/README, to wit that you can't reassociate outer joins into or out of the RHS of a semijoin. Per report from Heikki. Modified Files: -- pg

[COMMITTERS] pgsql: Change pgbench to use the table names pgbench_accounts,

2009-05-07 Thread Tom Lane
Log Message: --- Change pgbench to use the table names pgbench_accounts, pgbench_branches, pgbench_history, and pgbench_tellers, rather than just accounts, branches, history, and tellers. This is to prevent accidental conflicts with real application tables, as has been reported to happen a

[COMMITTERS] pgsql: Add an option to AlterTableCreateToastTable() to allow its caller

2009-05-07 Thread Tom Lane
Log Message: --- Add an option to AlterTableCreateToastTable() to allow its caller to force a toast table to be built, even if the sum-of-column-widths calculation indicates one isn't needed. This is needed by pg_migrator because if the old table has a toast table, we have to migrate over

[COMMITTERS] pg-migrator - pg_migrator: Call AlterTableCreateToastTable() with new

2009-05-07 Thread User Bmomjian
Log Message: --- Call AlterTableCreateToastTable() with new 'force' API. Check to make sure locales of old and new servers match. Shutown postmaster on abnormal exit. Modified Files: -- pg_migrator/func: pg_migrator.c (r1.1 -> r1.2) (http://cvs.pgfoundry.

[COMMITTERS] pg-migrator - pg_migrator: Call AlterTableCreateToastTable() with new

2009-05-07 Thread User Bmomjian
Log Message: --- Call AlterTableCreateToastTable() with new 'force' API. Check to make sure locales of old and new servers match. Shutown postmaster on abnormal exit. Modified Files: -- pg_migrator: INSTALL (r1.7 -> r1.8) (http://cvs.pgfoundry.org/cgi-bin

[COMMITTERS] pg-migrator - pg_migrator: Add code for port to Win32.

2009-05-07 Thread User Bmomjian
Log Message: --- Add code for port to Win32. Hiroshi Saito Modified Files: -- pg_migrator/src: exec.c (r1.2 -> r1.3) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pg-migrator/pg_migrator/src/exec.c.diff?r1=1.2&r2=1.3) file.c (r1.5 -> r1.6)

[COMMITTERS] pg-migrator - pg_migrator: Stamp 8.4 alpha 4.

2009-05-07 Thread User Bmomjian
Log Message: --- Stamp 8.4 alpha 4. Modified Files: -- pg_migrator/src: pg_migrator.h (r1.11 -> r1.12) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pg-migrator/pg_migrator/src/pg_migrator.h.diff?r1=1.11&r2=1.12) -- Sent via pgsql-committers mailing list (

[COMMITTERS] pg-migrator - pg_migrator: Stamp 8.4 alpha 4.

2009-05-07 Thread User Bmomjian
Log Message: --- Stamp 8.4 alpha 4. Modified Files: -- pg_migrator: README (r1.11 -> r1.12) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pg-migrator/pg_migrator/README.diff?r1=1.11&r2=1.12) -- Sent via pgsql-committers mailing list (pgsql-committers@postg

[COMMITTERS] pg-migrator - pg_migrator: Update TODO list.

2009-05-07 Thread User Bmomjian
Log Message: --- Update TODO list. Modified Files: -- pg_migrator: TODO (r1.3 -> r1.4) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pg-migrator/pg_migrator/TODO.diff?r1=1.3&r2=1.4) -- Sent via pgsql-committers mailing list (pgsql-committers@postgresql.org

[COMMITTERS] pg-migrator - pg_migrator: 8.3 locale now dumped.

2009-05-07 Thread User Bmomjian
Log Message: --- 8.3 locale now dumped. Modified Files: -- pg_migrator: TODO (r1.4 -> r1.5) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pg-migrator/pg_migrator/TODO.diff?r1=1.4&r2=1.5) -- Sent via pgsql-committers mailing list (pgsql-committers@postgresq

[COMMITTERS] pgsql: 'PGDLLIMPORT' ShmemVariableCache, needed for pg_migrator.so

2009-05-07 Thread Bruce Momjian
Log Message: --- 'PGDLLIMPORT' ShmemVariableCache, needed for pg_migrator.so function linkage on Win32. Tested by Hiroshi Saito Modified Files: -- pgsql/src/include/access: transam.h (r1.67 -> r1.68) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/incl

[COMMITTERS] pg-migrator - pg_migrator: Remove unnecessary TODO item.

2009-05-07 Thread User Bmomjian
Log Message: --- Remove unnecessary TODO item. Modified Files: -- pg_migrator: TODO (r1.5 -> r1.6) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pg-migrator/pg_migrator/TODO.diff?r1=1.5&r2=1.6) -- Sent via pgsql-committers mailing list (pgsql-committers@po

[COMMITTERS] pg-migrator - pg_migrator: Win32 improvements.

2009-05-07 Thread User Bmomjian
Log Message: --- Win32 improvements. Modified Files: -- pg_migrator/src: relfilenode.c (r1.10 -> r1.11) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pg-migrator/pg_migrator/src/relfilenode.c.diff?r1=1.10&r2=1.11) -- Sent via pgsql-committers mailing list

[COMMITTERS] pg-migrator - pg_migrator: More Win32 abstractions.

2009-05-07 Thread User Bmomjian
Log Message: --- More Win32 abstractions. Modified Files: -- pg_migrator/src: option.c (r1.5 -> r1.6) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pg-migrator/pg_migrator/src/option.c.diff?r1=1.5&r2=1.6) pg_migrator.c (r1.9 -> r1.10) (http: