[COMMITTERS] pgsql: Don't make --enable-cassert turn on RANDOMIZE_ALLOCATED_MEMORY

2008-07-11 Thread Tom Lane
Log Message: --- Don't make --enable-cassert turn on RANDOMIZE_ALLOCATED_MEMORY automatically; it's just too dang expensive. Per recent discussion, but I just got my nose rubbed in it again while doing some performance checking. Modified Files: -- pgsql/src/include:

[COMMITTERS] pgsql: Const-ify the arguments of str_tolower() and friends to suppress

2008-07-11 Thread Tom Lane
Log Message: --- Const-ify the arguments of str_tolower() and friends to suppress compile warnings. Clean up various unneeded cruft that was left behind after creating those routines. Introduce some convenience functions str_tolower_z etc to eliminate tedious and error-prone double argume

[COMMITTERS] pgsql: Multi-column GIN indexes.

2008-07-11 Thread Tom Lane
Log Message: --- Multi-column GIN indexes. Teodor Sigaev Modified Files: -- pgsql/doc/src/sgml: indices.sgml (r1.73 -> r1.74) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/indices.sgml?r1=1.73&r2=1.74) pgsql/doc/src/sgml/ref: cre

[COMMITTERS] pgsql: Fix an oversight in the original implementation of

2008-07-11 Thread Tom Lane
Log Message: --- Fix an oversight in the original implementation of performMultipleDeletions(): the alreadyDeleted list has to be passed down through deleteDependentObjects(), else objects that are deleted via auto/internal dependencies don't get reported back up to performMultipleDeletions

[COMMITTERS] pgsql: Fix an oversight in the original implementation of

2008-07-11 Thread Tom Lane
Log Message: --- Fix an oversight in the original implementation of performMultipleDeletions(): the alreadyDeleted list has to be passed down through deleteDependentObjects(), else objects that are deleted via auto/internal dependencies don't get reported back up to performMultipleDeletions

Re: [COMMITTERS] pgsql: Add: > > * Add temporal versions of generate_series() > >

2008-07-11 Thread Simon Riggs
On Tue, 2008-03-11 at 17:42 +, Bruce Momjian wrote: > Log Message: > --- > Add: > > > > > * Add temporal versions of generate_series() > > > > http://archives.postgresql.org/pgsql-hackers/2007-04/msg01180.php > Committed 5 May 2008 -- Simon Riggs www.2ndQuadrant.com

Re: [COMMITTERS] pgsql: Allow binary-coercible types for cast function arguments and

2008-07-11 Thread Tom Lane
[EMAIL PROTECTED] (Peter Eisentraut) writes: > Allow binary-coercible types for cast function arguments and return types. > Document return type of cast functions. > Also change documentation to prefer the term "binary coercible" in its > present sense instead of the previous term "binary compatib

[COMMITTERS] pgsql: Add caching of query to GIN/GiST consistent function.

2008-07-11 Thread Teodor Sigaev
Log Message: --- Add caching of query to GIN/GiST consistent function. Per performance gripe from nomao.com Modified Files: -- pgsql/contrib/pg_trgm: trgm_gin.c (r1.4 -> r1.5) (http://anoncvs.postgresql.org/cvsweb.cgi/pgsql/contrib/pg_trgm/trgm_gin.c?r1=1.4

[COMMITTERS] pgsql: Allow binary-coercible types for cast function arguments and

2008-07-11 Thread Peter Eisentraut
Log Message: --- Allow binary-coercible types for cast function arguments and return types. Document return type of cast functions. Also change documentation to prefer the term "binary coercible" in its present sense instead of the previous term "binary compatible". Modified Files: --