[COMMITTERS] pgsql: Make sure pg_control is opened in binary mode, to deal with

2008-09-24 Thread Magnus Hagander
Log Message: --- Make sure pg_control is opened in binary mode, to deal with situtations when the file contains an EOF maker (0x1A) on Windows. ITAGAKI Takahiro Tags: REL8_2_STABLE Modified Files: -- pgsql/src/bin/pg_controldata: pg_controldata.c (r1.31 -> r

[COMMITTERS] pgsql: Make sure pg_control is opened in binary mode, to deal with

2008-09-24 Thread Magnus Hagander
Log Message: --- Make sure pg_control is opened in binary mode, to deal with situtations when the file contains an EOF maker (0x1A) on Windows. ITAGAKI Takahiro Modified Files: -- pgsql/src/bin/pg_controldata: pg_controldata.c (r1.40 -> r1.41) (http://ano

[COMMITTERS] pgsql: Make sure pg_control is opened in binary mode, to deal with

2008-09-24 Thread Magnus Hagander
Log Message: --- Make sure pg_control is opened in binary mode, to deal with situtations when the file contains an EOF maker (0x1A) on Windows. ITAGAKI Takahiro Tags: REL8_3_STABLE Modified Files: -- pgsql/src/bin/pg_controldata: pg_controldata.c (r1.36 -> r

[COMMITTERS] pgsql: Silence compiler warning caused by recent collation patch.

2008-09-24 Thread Magnus Hagander
Log Message: --- Silence compiler warning caused by recent collation patch. Modified Files: -- pgsql/src/bin/pg_resetxlog: pg_resetxlog.c (r1.67 -> r1.68) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/bin/pg_resetxlog/pg_resetxlog.c?r1=1.67&r2=1.68)

[COMMITTERS] psqlodbc - psqlodbc: Suppress some compiler warnings.

2008-09-24 Thread User Hinoue
Log Message: --- Suppress some compiler warnings. Modified Files: -- psqlodbc: convert.c (r1.171 -> r1.172) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/psqlodbc/psqlodbc/convert.c.diff?r1=1.171&r2=1.172) descriptor.h (r1.20 -> r1.21) (http

[COMMITTERS] pgsql: Fix unportable syntax used in recent patch.

2008-09-24 Thread Tom Lane
Log Message: --- Fix unportable syntax used in recent patch. Per results from buildfarm member 'bear'. Modified Files: -- pgsql/src/pl/plpgsql/src: pl_exec.c (r1.220 -> r1.221) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/src/pl/plpgsql/src/pl_exec.c?r1

[COMMITTERS] psqlodbc - psqlodbc: BigEndian support for ucs2(utf-16)<->utf8

2008-09-24 Thread User Hinoue
Log Message: --- BigEndian support for ucs2(utf-16)<->utf8 conversion. Modified Files: -- psqlodbc: win_unicode.c (r1.19 -> r1.20) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/psqlodbc/psqlodbc/win_unicode.c.diff?r1=1.19&r2=1.20) -- Sent via pgsql-committ

[COMMITTERS] pgsql: Fix markup tag error, envvar -> envar.

2008-09-24 Thread Bruce Momjian
Log Message: --- Fix markup tag error, envvar -> envar. Modified Files: -- pgsql/doc/src/sgml: charset.sgml (r2.89 -> r2.90) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/charset.sgml?r1=2.89&r2=2.90) -- Sent via pgsql-committers mailing li

[COMMITTERS] pgsql: Fix more problems with rewriter failing to set Query.hasSubLinks

2008-09-24 Thread Tom Lane
Log Message: --- Fix more problems with rewriter failing to set Query.hasSubLinks when inserting a SubLink expression into a rule query. We missed cases where the original query contained a sub-SELECT in a function in FROM, a multi-row VALUES list, or a RETURNING list. Per bug #4434 from

[COMMITTERS] pgsql: Fix more problems with rewriter failing to set Query.hasSubLinks

2008-09-24 Thread Tom Lane
Log Message: --- Fix more problems with rewriter failing to set Query.hasSubLinks when inserting a SubLink expression into a rule query. We missed cases where the original query contained a sub-SELECT in a function in FROM, a multi-row VALUES list, or a RETURNING list. Per bug #4434 from

[COMMITTERS] pgsql: Fix more problems with rewriter failing to set Query.hasSubLinks

2008-09-24 Thread Tom Lane
Log Message: --- Fix more problems with rewriter failing to set Query.hasSubLinks when inserting a SubLink expression into a rule query. We missed cases where the original query contained a sub-SELECT in a function in FROM, a multi-row VALUES list, or a RETURNING list. Per bug #4434 from

[COMMITTERS] pgsql: Fix more problems with rewriter failing to set Query.hasSubLinks

2008-09-24 Thread Tom Lane
Log Message: --- Fix more problems with rewriter failing to set Query.hasSubLinks when inserting a SubLink expression into a rule query. We missed cases where the original query contained a sub-SELECT in a function in FROM, a multi-row VALUES list, or a RETURNING list. Per bug #4434 from

Re: [COMMITTERS] pgsql: Make LC_COLLATE and LC_CTYPE database-level settings.

2008-09-24 Thread Chris Browne
[EMAIL PROTECTED] (Heikki Linnakangas) writes: > Log Message: > --- > Make LC_COLLATE and LC_CTYPE database-level settings. Collation and > ctype are now more like encoding, stored in new datcollate and datctype > columns in pg_database. > > This is a stripped-down version of Radek Strnad'

[COMMITTERS] pgsql: Fix pg_dump bug in the database-level collation patch.

2008-09-24 Thread Heikki Linnakangas
Log Message: --- Fix pg_dump bug in the database-level collation patch. "datcollate" and "datctype" columns were misspelled. Per report from Chris Browne. Modified Files: -- pgsql/src/bin/pg_dump: pg_dump.c (r1.501 -> r1.502) (http://anoncvs.postgresql.org/

[COMMITTERS] pgsql: Fix integral timestamps so the output is consistent in all cases

2008-09-24 Thread Bruce Momjian
Log Message: --- Fix integral timestamps so the output is consistent in all cases to round: select interval '0:0:0.7', interval '@ 0.70 secs', interval '0.7 seconds'; Ron Mayer Modified Files: -- pgsql/src/backend/utils/adt: datetime.c (r1.

[COMMITTERS] pgsql: Add documentation about when trigger values NEW/OLD return NULL.

2008-09-24 Thread Bruce Momjian
Log Message: --- Add documentation about when trigger values NEW/OLD return NULL. Jeff Davis Modified Files: -- pgsql/doc/src/sgml: plpgsql.sgml (r1.133 -> r1.134) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/plpgsql.sgml?r1=1.133&r2=1.134)

[COMMITTERS] pgsql: Establish the rule that array types should have the same typdelim

2008-09-24 Thread Tom Lane
Log Message: --- Establish the rule that array types should have the same typdelim as their element types. Since the backend doesn't actually pay attention to the array type's delimiter, this has no functional effect, but it seems better for the catalog entries to be consistent. Per gripe