[COMMITTERS] orafce - orafce: Initial implementation of PLVDate library -

2006-03-10 Thread User Okbob
Log Message: --- Initial implementation of PLVDate library - functionality for counting with bussiness days arithemtics Modified Files: -- orafce: Makefile (r1.4 -> r1.5) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/orafce/orafce/Makefile.diff?r1=1.4&r2=1.5

[COMMITTERS] pgsql: Fix order of linking of libxslt and libxml2, per Dave Page.

2006-03-10 Thread Tom Lane
Log Message: --- Fix order of linking of libxslt and libxml2, per Dave Page. Modified Files: -- pgsql/contrib/xml2: Makefile (r1.7 -> r1.8) (http://developer.postgresql.org/cvsweb.cgi/pgsql/contrib/xml2/Makefile.diff?r1=1.7&r2=1.8)

[COMMITTERS] pgsql: Fix order of linking of libxslt and libxml2, per Dave Page.

2006-03-10 Thread Tom Lane
Log Message: --- Fix order of linking of libxslt and libxml2, per Dave Page. Tags: REL8_1_STABLE Modified Files: -- pgsql/contrib/xml2: Makefile (r1.6 -> r1.6.2.1) (http://developer.postgresql.org/cvsweb.cgi/pgsql/contrib/xml2/Makefile.diff?r1=1.6&r2=

[COMMITTERS] pgsql: Fix order of linking of libxslt and libxml2, per Dave Page.

2006-03-10 Thread Tom Lane
Log Message: --- Fix order of linking of libxslt and libxml2, per Dave Page. Tags: REL8_0_STABLE Modified Files: -- pgsql/contrib/xml2: Makefile (r1.5 -> r1.5.4.1) (http://developer.postgresql.org/cvsweb.cgi/pgsql/contrib/xml2/Makefile.diff?r1=1.5&r2=

Re: [COMMITTERS] pgsql: Remove Jan Wieck's name from copyrights,

2006-03-10 Thread Neil Conway
On Thu, 2006-03-09 at 17:29 -0400, Bruce Momjian wrote: > Remove Jan Wieck's name from copyrights, and put in standard > boilerplate, with approval of author. You missed a few: src/pl/tcl/pltcl.c src/pl/tcl/license.terms src/backend/utils/adt/ruleutils.c I'd fix these myself, but I'm not sure w

[COMMITTERS] python - typ: Make record more "subclassable".

2006-03-10 Thread James William Pye
Log Message: --- Make record more "subclassable". Introduce an 'atttypid' attribute that by default is set to "()" (empty tuple). This is what the sender and receiver will use to specify or validate the typids sent or received. Modified Files: -- typ/src: root.py (

[COMMITTERS] python - pq: Move (tracenull)RaiseTransactionError to

2006-03-10 Thread James William Pye
Log Message: --- Move (tracenull)RaiseTransactionError to (Transaction)exc_info. Move the contents to of the RaiseTransactionError function in Proboscis to the exc_info method on the client3.Transaction class. This is a more appropriate location for this as it allows any PQueue implementat

[COMMITTERS] pgsql: Make $PostgreSQL CVS tags consistent for SGML files.

2006-03-10 Thread Bruce Momjian
Log Message: --- Make $PostgreSQL CVS tags consistent for SGML files. Modified Files: -- pgsql/doc/src/sgml: advanced.sgml (r1.49 -> r1.50) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/advanced.sgml.diff?r1=1.49&r2=1.50) arch-dev.s

[COMMITTERS] pgsql: Remove unintened change to pg_proc.h.

2006-03-10 Thread Bruce Momjian
Log Message: --- Remove unintened change to pg_proc.h. Modified Files: -- pgsql/src/include/catalog: pg_proc.h (r1.402 -> r1.403) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/catalog/pg_proc.h.diff?r1=1.402&r2=1.403) --

Re: [COMMITTERS] pgsql: Make $PostgreSQL CVS tags consistent for

2006-03-10 Thread Neil Conway
On Fri, 2006-03-10 at 15:10 -0400, Bruce Momjian wrote: > Make $PostgreSQL CVS tags consistent for SGML files. > pgsql/src/include/catalog: > pg_proc.h (r1.401 -> r1.402) > > (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/catalog/pg_proc.h.diff?r1=1.401&r2=1.402

Re: [COMMITTERS] pgsql: Make $PostgreSQL CVS tags consistent for SGML

2006-03-10 Thread Bruce Momjian
Neil Conway wrote: > On Fri, 2006-03-10 at 15:10 -0400, Bruce Momjian wrote: > > Make $PostgreSQL CVS tags consistent for SGML files. > > > pgsql/src/include/catalog: > > pg_proc.h (r1.401 -> r1.402) > > > > (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/catalog

[COMMITTERS] python - fe: Fix bugs introduced by recent refactor.

2006-03-10 Thread James William Pye
Log Message: --- Fix bugs introduced by recent refactor. Use the new exc_info method on Transactions from recent commit to pq. (Removes RaiseTransactionError) Fix the C.Function interface to use the StoredProcedure class. Fix absolute portal fetches(__getitem__). Add support for composite

[COMMITTERS] python - fe: Set traceR.

2006-03-10 Thread James William Pye
Log Message: --- Set traceR. Modified Files: -- fe/src: tracenull.py (r1.14 -> r1.15) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/fe/src/tracenull.py.diff?r1=1.14&r2=1.15) ---(end of broadcast)--- TIP

[COMMITTERS] pgsql: Implement 4 new aggregate functions from SQL2003.

2006-03-10 Thread Neil Conway
Log Message: --- Implement 4 new aggregate functions from SQL2003. Specifically: var_pop(), var_samp(), stddev_pop(), and stddev_samp(). var_samp() and stddev_samp() are just renamings of the historical Postgres aggregates variance() and stddev() -- the latter names have been kept for backw

[COMMITTERS] pgsql: Add a CHECK_FOR_INTERRUPTS() in _bt_buildadd().

2006-03-10 Thread Tom Lane
Log Message: --- Add a CHECK_FOR_INTERRUPTS() in _bt_buildadd(). This fixes problem with not responding to query cancel during the last stage of btree index creation. Modified Files: -- pgsql/src/backend/access/nbtree: nbtsort.c (r1.99 -> r1.100) (http://d

[COMMITTERS] pgsql: Add a CHECK_FOR_INTERRUPTS() in _bt_buildadd().

2006-03-10 Thread Tom Lane
Log Message: --- Add a CHECK_FOR_INTERRUPTS() in _bt_buildadd(). This fixes problem with not responding to query cancel during the last stage of btree index creation. Tags: REL8_1_STABLE Modified Files: -- pgsql/src/backend/access/nbtree: nbtsort.c (r1.95.2.2

[COMMITTERS] python - pq: Raise the exception, not return.

2006-03-10 Thread James William Pye
Log Message: --- Raise the exception, not return. Modified Files: -- pq/src: client3.py (r1.18 -> r1.19) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/pq/src/client3.py.diff?r1=1.18&r2=1.19) ---(end of broadcast)--

[COMMITTERS] pgsql: Recent changes in memory management in tuplesort.c had a problem:

2006-03-10 Thread Tom Lane
Log Message: --- Recent changes in memory management in tuplesort.c had a problem: the case where we run low on array slots before we run low on memory is much more probable than I had thought, and so it's important to treat each tape fairly in that case. To fix this, track per-tape slot a

[COMMITTERS] pgsql: Remove a few places that attempted to define INT_MAX, SCHAR_MAX,

2006-03-10 Thread Neil Conway
Log Message: --- Remove a few places that attempted to define INT_MAX, SCHAR_MAX, and similar constants if they were not previously defined. All these constants must be defined by limits.h according to C89, so we can safely assume they are present. Modified Files: -- pgsql/

[COMMITTERS] pgsql: Add CVS tag lines to files that were lacking them.

2006-03-10 Thread Bruce Momjian
Log Message: --- Add CVS tag lines to files that were lacking them. Modified Files: -- pgsql/config: install-sh (r1.3 -> r1.4) (http://developer.postgresql.org/cvsweb.cgi/pgsql/config/install-sh.diff?r1=1.3&r2=1.4) missing (r1.3 -> r1.4) (h