[COMMITTERS] pgsql: Fix multicolumn GIN's wrong results with fastupdate enabled.

2009-11-13 Thread Teodor Sigaev
Log Message: --- Fix multicolumn GIN's wrong results with fastupdate enabled. User-defined consistent functions believes the check array contains at least one true element which was not a true for scanning pending list. Per report from Yury Don Modified Files: -- pgsql/sr

[COMMITTERS] pgsql: Fix multicolumn GIN's wrong results with fastupdate enabled.

2009-11-13 Thread Teodor Sigaev
Log Message: --- Fix multicolumn GIN's wrong results with fastupdate enabled. User-defined consistent functions believes the check array contains at least one true element which was not a true for scanning pending list. Per report from Yury Don Tags: REL8_4_STABLE Modified Files: -

[COMMITTERS] pgbouncer - pgbouncer: Disable maintenance during SUSPEND Otherwise

2009-11-13 Thread User Mkz
Log Message: --- Disable maintenance during SUSPEND Otherwise some timeout may activate and close connection that is already reported to other side; Modified Files: -- pgbouncer/src: janitor.c (r1.34 -> r1.35) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/p

[COMMITTERS] pgbouncer - pgbouncer: Clarify few login-related log messages

2009-11-13 Thread User Mkz
Log Message: --- Clarify few login-related log messages Modified Files: -- pgbouncer/src: client.c (r1.26 -> r1.27) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgbouncer/pgbouncer/src/client.c?r1=1.26&r2=1.27) -- Sent via pgsql-committers mailing list (p

[COMMITTERS] pgbouncer - pgbouncer: win32: allow user to override service account

2009-11-13 Thread User Mkz
Log Message: --- win32: allow user to override service account The automatic decision between Local System and Local Service was not reliable enough. And anyway, it's better to let user pick proper account. Modified Files: -- pgbouncer/win32: win32support.c (r1.7

[COMMITTERS] pgsql: When you do "ARRAY[...]::domain", where domain is a domain over

2009-11-13 Thread Heikki Linnakangas
Log Message: --- When you do "ARRAY[...]::domain", where domain is a domain over an array type, we need to check domain constraints. We used to do it correctly, but 8.4 introduced a separate code path for the "ARRAY[]::arraytype" case to infer the type of an empty ARRAY construct from the c

[COMMITTERS] pgsql: When you do "ARRAY[...]::domain", where domain is a domain over

2009-11-13 Thread Heikki Linnakangas
Log Message: --- When you do "ARRAY[...]::domain", where domain is a domain over an array type, we need to check domain constraints. We used to do it correctly, but 8.4 introduced a separate code path for the "ARRAY[]::arraytype" case to infer the type of an empty ARRAY construct from the c

[COMMITTERS] pg-migrator - pg_migrator: Re-recommend vacuumdb because we don't

2009-11-13 Thread User Bmomjian
Log Message: --- Re-recommend vacuumdb because we don't transfer the fsm or vm files. Modified Files: -- pg_migrator/src: pg_migrator.c (r1.67 -> r1.68) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pg-migrator/pg_migrator/src/pg_migrator.c?r1=1.67&r2=1.68)

[COMMITTERS] pg-migrator - pg_migrator: Re-recommend vacuumdb because we don't

2009-11-13 Thread User Bmomjian
Log Message: --- Re-recommend vacuumdb because we don't transfer the fsm or vm files. Modified Files: -- pg_migrator: INSTALL (r1.45 -> r1.46) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pg-migrator/pg_migrator/INSTALL?r1=1.45&r2=1.46) TODO (r1.23

[COMMITTERS] pgsql: A better fix for the "ARRAY[...]::domain" problem.

2009-11-13 Thread Heikki Linnakangas
Log Message: --- A better fix for the "ARRAY[...]::domain" problem. The previous patch worked, but the transformed ArrayExpr claimed to have a return type of "domain", even though the domain constraint was only checked by the enclosing CoerceToDomain node. With this fix, the ArrayExpr is co

[COMMITTERS] pgsql: A better fix for the "ARRAY[...]::domain" problem.

2009-11-13 Thread Heikki Linnakangas
Log Message: --- A better fix for the "ARRAY[...]::domain" problem. The previous patch worked, but the transformed ArrayExpr claimed to have a return type of "domain", even though the domain constraint was only checked by the enclosing CoerceToDomain node. With this fix, the ArrayExpr is co

[COMMITTERS] pgsql: Add control knobs for plpgsql's variable resolution behavior, and

2009-11-13 Thread Tom Lane
Log Message: --- Add control knobs for plpgsql's variable resolution behavior, and make the default be "throw error on conflict", as per discussions. The GUC variable is plpgsql.variable_conflict, with values "error", "use_variable", "use_column". The behavior can also be specified per-fu

[COMMITTERS] pgsql: Avoid assuming that enum CreateStmtLikeOption is unsigned.

2009-11-13 Thread Tom Lane
Log Message: --- Avoid assuming that enum CreateStmtLikeOption is unsigned. Zdenek Kotala Modified Files: -- pgsql/src/include/nodes: parsenodes.h (r1.413 -> r1.414) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/include/nodes/parsenodes.h?r1=1.413&r2

[COMMITTERS] pgsql: Clean up a couple of bizarre code formatting choices in recent

2009-11-13 Thread Tom Lane
Log Message: --- Clean up a couple of bizarre code formatting choices in recent CREATE LIKE patch. Modified Files: -- pgsql/src/backend/parser: parse_utilcmd.c (r2.29 -> r2.30) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/backend/parser/parse_utilcm