Log Message:
---
2005-12-26 Josh Cooley <[EMAIL PROTECTED]>
NpgsqlCommandBuilder.cs: Fix change intergration mistake (fixed build).
Modified Files:
--
Npgsql/src/Npgsql:
NpgsqlCommandBuilder.cs (r1.8 -> r1.9)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/
Log Message:
---
Protect ADD and HEADER symbols from conflicting with MIPS includes.
Modified Files:
--
pgsql/src/backend/parser:
gram.y (r2.518 -> r2.519)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/parser/gram.y.diff?r1=2.518&r2=2.519)
Log Message:
---
2005-12-26 Josh Cooley <[EMAIL PROTECTED]>
NpgsqlCommandBuilder.cs: Use schema information from GetSchemaTable to produce
commands. This allows inserts to omit autoincrement columns.
Modified Files:
--
Npgsql/src/Npgsql:
NpgsqlCommandBuilder.cs
Log Message:
---
More uses of IS_HIGHBIT_SET() macro.
Modified Files:
--
pgsql/src/backend/utils/mb:
conv.c (r1.57 -> r1.58)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/mb/conv.c.diff?r1=1.57&r2=1.58)
wchar.c (r1.51 -> r1.52)
Log Message:
---
Update version information to reference wikipgedia rather than mediawiki
Modified Files:
--
wikipgedia/includes:
DefaultSettings.php (r1.3 -> r1.4)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/wikipedia/wikipgedia/includes/DefaultSettings.p
Log Message:
---
Add wikipgedia specific information
Modified Files:
--
wikipgedia:
README.postgresql (r1.2 -> r1.3)
(http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/wikipedia/wikipgedia/README.postgresql.diff?r1=1.2&r2=1.3)
RELEASE-NOTES (r1.2 -> r1.3)
Log Message:
---
Rename pg_make_encrypted_password to PQencryptPassword.
Modified Files:
--
pgsql/doc/src/sgml:
libpq.sgml (r1.200 -> r1.201)
(http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/libpq.sgml.diff?r1=1.200&r2=1.201)
pgsql/src/bin
Log Message:
---
Add:
* %Make row-wise comparisons work per SQL spec
Right now, '(a, b) < (1, 2)' is processed as 'a < 1 and b < 2', but
the SQL standard requires it to be processed as a column-by-column
comparison, so the proper comparison is '(a < 1) OR (a = 1 AND b < 2)'.
Modifi
Log Message:
---
Various cosmetic code cleanup for PL/Python:
- use "bool" rather than "int" for boolean variables
- use "PLy_malloc" rather than "malloc" in two places
- define "PLy_strdup", and use it rather than malloc() + strcpy() in
two places (which should have been memcpy(), any