[COMMITTERS] pgsql: Editing for the new "Encryption Options" section of the manual.

2005-05-24 Thread Neil Conway
Log Message: --- Editing for the new "Encryption Options" section of the manual. Modified Files: -- pgsql/doc/src/sgml: runtime.sgml (r1.320 -> r1.321) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/runtime.sgml.diff?r1=1.320&r2=1.321)

[COMMITTERS] pgsql: Fix previous patch to exprTypmod.

2005-05-24 Thread Tatsuo Ishii
Log Message: --- Fix previous patch to exprTypmod. Tags: REL8_0_STABLE Modified Files: -- pgsql/src/backend/parser: parse_expr.c (r1.179.4.1 -> r1.179.4.2) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/parser/parse_expr.c.diff?r1=1.179

[COMMITTERS] pgsql: Fix previous patch to exprTypmod.

2005-05-24 Thread Tatsuo Ishii
Log Message: --- Fix previous patch to exprTypmod. Tags: REL7_4_STABLE Modified Files: -- pgsql/src/backend/parser: parse_expr.c (r1.163.2.2 -> r1.163.2.3) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/parser/parse_expr.c.diff?r1=1.163

[COMMITTERS] pgsql: Fix previous patch to exprTypmod.

2005-05-24 Thread Tatsuo Ishii
Log Message: --- Fix previous patch to exprTypmod. Tags: REL7_3_STABLE Modified Files: -- pgsql/src/backend/parser: parse_expr.c (r1.129.2.2 -> r1.129.2.3) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/parser/parse_expr.c.diff?r1=1.129

[COMMITTERS] pgsql: Inserting 5 characters into char(10) does not produce 5 padding

2005-05-24 Thread Tatsuo Ishii
Log Message: --- Inserting 5 characters into char(10) does not produce 5 padding spaces if they are two-byte multibyte characters. Same thing can be happen if octet_length(multibyte_chars) == n where n is char(n). Long standing bug since 7.3 days. Per report and fix from Yoshiyuki Asaba. T

[COMMITTERS] pgsql: Inserting 5 characters into char(10) does not produce 5 padding

2005-05-24 Thread Tatsuo Ishii
Log Message: --- Inserting 5 characters into char(10) does not produce 5 padding spaces if they are two-byte multibyte characters. Same thing can be happen if octet_length(multibyte_chars) == n where n is char(n). Long standing bug since 7.3 days. Per report and fix from Yoshiyuki Asaba. T

[COMMITTERS] pgsql: Inserting 5 characters into char(10) does not produce 5 padding

2005-05-24 Thread Tatsuo Ishii
Log Message: --- Inserting 5 characters into char(10) does not produce 5 padding spaces if they are two-byte multibyte characters. Same thing can be happen if octet_length(multibyte_chars) == n where n is char(n). Long standing bug since 7.3 days. Per report and fix from Yoshiyuki Asaba. T

[COMMITTERS] plsh - CVSROOT: Turn off commit messages.

2005-05-24 Thread User Petere
Log Message: --- Turn off commit messages. Modified Files: -- CVSROOT: commitinfo (r1.2 -> r1.3) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/plsh/CVSROOT/commitinfo.diff?r1=1.2&r2=1.3) loginfo (r1.2 -> r1.3) (http://cvs.pgfoundry.org/cgi-b

[COMMITTERS] plsh - plsh: Imported Sources

2005-05-24 Thread User Petere
Update of /cvsroot/plsh/plsh In directory pgfoundry.org:/tmp/cvs-serv8007 Log Message: Initial import Status: Vendor Tag: dummy Release Tags: start N plsh/README N plsh/COPYING N plsh/INSTALL N plsh/Makefile.am N plsh/NEWS N plsh/configure.ac N plsh/pgplsh.c N plsh/test.sq

[COMMITTERS] pgsql: Previous fix for "x FULL JOIN y ON true" failed to handle the

2005-05-24 Thread Tom Lane
Log Message: --- Previous fix for "x FULL JOIN y ON true" failed to handle the case where there was also a WHERE-clause restriction that applied to the join. The check on restrictlist == NIL is really unnecessary anyway, because select_mergejoin_clauses already checked for and complained a

[COMMITTERS] pgsql: Previous fix for "x FULL JOIN y ON true" failed to handle the

2005-05-24 Thread Tom Lane
Log Message: --- Previous fix for "x FULL JOIN y ON true" failed to handle the case where there was also a WHERE-clause restriction that applied to the join. The check on restrictlist == NIL is really unnecessary anyway, because select_mergejoin_clauses already checked for and complained a

[COMMITTERS] pgsql: Previous fix for "x FULL JOIN y ON true" failed to handle the

2005-05-24 Thread Tom Lane
Log Message: --- Previous fix for "x FULL JOIN y ON true" failed to handle the case where there was also a WHERE-clause restriction that applied to the join. The check on restrictlist == NIL is really unnecessary anyway, because select_mergejoin_clauses already checked for and complained a

[COMMITTERS] pgsql: Fix PL makefiles to support running regression tests in VPATH

2005-05-24 Thread Tom Lane
Log Message: --- Fix PL makefiles to support running regression tests in VPATH builds. Modified Files: -- pgsql/src/pl/plperl: GNUmakefile (r1.21 -> r1.22) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/pl/plperl/GNUmakefile.diff?r1=1.21&r2=1.22)

[COMMITTERS] pgsql: Add -I$(srcdir) to CPPFLAGS to make psqlscan.c compile in vpath

2005-05-24 Thread Tom Lane
Log Message: --- Add -I$(srcdir) to CPPFLAGS to make psqlscan.c compile in vpath builds. Not sure why this hasn't been reported before; perhaps it is not needed with newer gcc versions, but it definitely fails here. Modified Files: -- pgsql/src/bin/psql: Makefile (r

[COMMITTERS] pgsql: Inserting 5 characters into char(10) does not produce 5 padding

2005-05-24 Thread Tatsuo Ishii
Log Message: --- Inserting 5 characters into char(10) does not produce 5 padding spaces if they are two-byte multibyte characters. Same thing can be happen if octet_length(multibyte_chars) == n where n is char(n). Long standing bug since 7.3 days. Per report and fix from Yoshiyuki Asaba. M

[COMMITTERS] pgsql: Add regression tests for previously-untested PL/Perl features.

2005-05-24 Thread Neil Conway
Log Message: --- Add regression tests for previously-untested PL/Perl features. From Andrew Dunstan. Modified Files: -- pgsql/src/pl/plperl: GNUmakefile (r1.20 -> r1.21) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/pl/plperl/GNUmakefile.diff?r1=1.2

[COMMITTERS] pgsql: Fix weird indentation of function return type.

2005-05-24 Thread Neil Conway
Log Message: --- Fix weird indentation of function return type. Modified Files: -- pgsql/src/backend/utils/misc: ps_status.c (r1.23 -> r1.24) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/misc/ps_status.c.diff?r1=1.23&r2=1.24) ---