[COMMITTERS] npgsql - Npgsql2: NpgsqlDataReader.cs, NpgsqlDbType.cs,

2007-09-27 Thread User Fxjr
Log Message: --- NpgsqlDataReader.cs, NpgsqlDbType.cs, NpgsqlTypesHelper.cs: [#1008782] Support for Guid type. Thanks David Bachmann (david dot bachmann at ersystems dot ch) for patch. NpgsqlTypesHelper.cs: Fixed parameter mapping for currency datatype.

[COMMITTERS] pgsql: exclude contrib/tsearch2 from regression tests.

2007-09-27 Thread Andrew Dunstan
Log Message: --- exclude contrib/tsearch2 from regression tests. Modified Files: -- pgsql/src/tools/msvc: vcregress.pl (r1.3 -> r1.4) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/tools/msvc/vcregress.pl?r1=1.3&r2=1.4) ---(e

Re: [COMMITTERS] pgsql: Turn build and vcregress .bat files into pure one line wrappers

2007-09-27 Thread Andrew Dunstan
Oops. I also inadvertantly committed the Install.pm fix for read-only files along with this. That should be OK though. cheers andrew Andrew Dunstan wrote: Log Message: --- Turn build and vcregress .bat files into pure one line wrappers for the perl scripts. Remove the now superfluou

[COMMITTERS] pgsql: Turn build and vcregress .bat files into pure one line wrappers

2007-09-27 Thread Andrew Dunstan
Log Message: --- Turn build and vcregress .bat files into pure one line wrappers for the perl scripts. Remove the now superfluous getregress.pl. Modified Files: -- pgsql/src/tools/msvc: Install.pm (r1.21 -> r1.22) (http://developer.postgresql.org/cvsweb.cgi

[COMMITTERS] pgsql: Fix typos in two comments.

2007-09-27 Thread Tom Lane
Log Message: --- Fix typos in two comments. Spotted by Brendan Jurd Modified Files: -- pgsql/src/include: fmgr.h (r1.54 -> r1.55) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/fmgr.h?r1=1.54&r2=1.55) postgres.h (r1.82 -> r1.83)

[COMMITTERS] pgsql: Tweak pgbench.c to remove the hidden assumption that a WIN32

2007-09-27 Thread Tom Lane
Log Message: --- Tweak pgbench.c to remove the hidden assumption that a WIN32 machine couldn't possibly HAVE_GETOPT. I believe this is the most appropriate form of the patch submitted 2007-08-07 by Hiroshi Saito, though not having a Windows build environment I won't know for sure till I se

[COMMITTERS] pgsql: Define the FRONTEND symbol in postgres_fe.h, which allows us to

2007-09-27 Thread Tom Lane
Log Message: --- Define the FRONTEND symbol in postgres_fe.h, which allows us to eliminate duplicative -DFRONTEND flags from many Makefiles. We still need Makefile control of the symbol in a few places that compile frontend-or-backend src/port/ files, but it's a lot cleaner than before.

[COMMITTERS] pgsql: Add virtual transaction IDs to CSVLOG output, so that messages

2007-09-27 Thread Tom Lane
Log Message: --- Add virtual transaction IDs to CSVLOG output, so that messages coming from the same transaction can be identified even when no regular XID was assigned. This seems essential after addition of the lazy-XID patch. Also some minor code cleanup in write_csvlog(). Modified Fil

[COMMITTERS] pgsql: Fix Assert failure in ExpandColumnRefStar --- what I thought was

2007-09-27 Thread Tom Lane
Log Message: --- Fix Assert failure in ExpandColumnRefStar --- what I thought was a can't happen condition can happen given incorrect input. The real problem is that gram.y should try harder to distinguish * from "*" --- the latter is a legal column name per spec, and someday we ought to t

[COMMITTERS] pgsql: Fix Assert failure in ExpandColumnRefStar --- what I thought was

2007-09-27 Thread Tom Lane
Log Message: --- Fix Assert failure in ExpandColumnRefStar --- what I thought was a can't happen condition can happen given incorrect input. The real problem is that gram.y should try harder to distinguish * from "*" --- the latter is a legal column name per spec, and someday we ought to t

Re: [COMMITTERS] pgsql: Some small tuptoaster improvements from Greg Stark.

2007-09-27 Thread Tom Lane
Gregory Stark <[EMAIL PROTECTED]> writes: > There were some further changes you suggested involving rethinking the > way the compression strategy works. Should I put that on my todo list > for early in 8.4? Sure, if you feel like working on it. (I'd hoped to get to that myself for 8.3, but we are

[COMMITTERS] pllolcode - pllolcode: Begin messing with actually creating a parse tree

2007-09-27 Thread User Eggyknap
Log Message: --- Begin messing with actually creating a parse tree Start adding proper support for data types Modified Files: -- pllolcode: gram.y (r1.5 -> r1.6) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pllolcode/pllolcode/gram.y.diff?r1=1.5&r2=1.6)

[COMMITTERS] pllolcode - pllolcode: Remove tmp/ -- it's now a separate module called

2007-09-27 Thread User Eggyknap
Log Message: --- Remove tmp/ -- it's now a separate module called parser Removed Files: - pllolcode/tmp: gram.y (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pllolcode/pllolcode/tmp/gram.y) make.sh (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cg

[COMMITTERS] pllolcode - parser: Imported Sources

2007-09-27 Thread User Eggyknap
Update of /cvsroot/pllolcode/parser In directory pgfoundry.org:/tmp/cvs-serv57192 Log Message: Create parser module (I hope) Status: Vendor Tag: eggyknap Release Tags: start N parser/gram.y N parser/make.sh N parser/pllolcode.h N parser/sample.lol.txt N parser/scan.l N par

[COMMITTERS] pllolcode - pllolcode: Make test scripts slightly more portable

2007-09-27 Thread User Eggyknap
Log Message: --- Make test scripts slightly more portable (specifically, portable between my development boxen). Remove flex -V from Makefile Modified Files: -- pllolcode: Makefile (r1.4 -> r1.5) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pllolcode/pllol

Re: [COMMITTERS] pgsql: Some small tuptoaster improvements from Greg Stark.

2007-09-27 Thread Gregory Stark
"Tom Lane" <[EMAIL PROTECTED]> writes: > Log Message: > --- > Some small tuptoaster improvements from Greg Stark. Avoid unnecessary > decompression of an already-compressed external value when we have to copy > it; save a few cycles when a value is too short for compression; and > annotat