[COMMITTERS] pgsql: Wording improvement.

2007-05-31 Thread Bruce Momjian
Log Message: --- Wording improvement. Modified Files: -- pgsql/doc: FAQ_DEV (r1.137 -> r1.138) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/FAQ_DEV.diff?r1=1.137&r2=1.138) pgsql/doc/src/FAQ: FAQ_DEV.html (r1.141 -> r1.142) (htt

Re: [COMMITTERS] pgsql: Add URL for code comments to developer's FAQ:

2007-05-31 Thread Bruce Momjian
Tom Lane wrote: > [EMAIL PROTECTED] (Bruce Momjian) writes: > > Add URL for code comments to developer's FAQ: > > The text form of this comes out pretty unhelpfully: > > http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/FAQ_DEV.diff?r1=1.135&r2=1.136 Thanks, fixed. -- Bruce Momjian <[EMA

[COMMITTERS] pgsql: Update FAQ_DEV URL to output for text format.

2007-05-31 Thread Bruce Momjian
Log Message: --- Update FAQ_DEV URL to output for text format. Modified Files: -- pgsql/doc: FAQ_DEV (r1.136 -> r1.137) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/FAQ_DEV.diff?r1=1.136&r2=1.137) pgsql/doc/src/FAQ: FAQ_DEV.html (r1.140

Re: [COMMITTERS] pgsql: Add URL for code comments to developer's FAQ:

2007-05-31 Thread Tom Lane
[EMAIL PROTECTED] (Bruce Momjian) writes: > Add URL for code comments to developer's FAQ: The text form of this comes out pretty unhelpfully: http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/FAQ_DEV.diff?r1=1.135&r2=1.136 regards, tom lane ---

[COMMITTERS] pgsql: Add URL for code comments to developer's FAQ:

2007-05-31 Thread Bruce Momjian
Log Message: --- Add URL for code comments to developer's FAQ: http://www.ibm.com/developerworks/linux/library/l-clear-code/?ca=dgr-FClnxw01linuxcodetips Modified Files: -- pgsql/doc: FAQ_DEV (r1.135 -> r1.136) (http://developer.postgresql.org/cvs

[COMMITTERS] pgsnmpd - pgsnmpd: Fix line length for small terminals in usage()

2007-05-31 Thread User Eggyknap
Log Message: --- Fix line length for small terminals in usage() Modified Files: -- pgsnmpd: pgsnmpd_regress.pl (r1.4 -> r1.5) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgsnmpd/pgsnmpd/pgsnmpd_regress.pl.diff?r1=1.4&r2=1.5) ---(en

[COMMITTERS] pgunittest - pgUnitTest:

2007-05-31 Thread User Pgunittest
Log Message: --- Modified Files: -- pgUnitTest/src/org/pgfoundry/pgunittest/unittest: XMLReaderTest.java (r1.2 -> r1.3) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgunittest/pgUnitTest/src/org/pgfoundry/pgunittest/unittest/XMLReaderTest.java.diff?r1=1.2&

[COMMITTERS] pgunittest - pgUnitTest: New Directory

2007-05-31 Thread User Pgunittest
Update of /cvsroot/pgunittest/pgUnitTest/xml In directory pgfoundry.org:/tmp/cvs-serv23408/xml Log Message: Directory /cvsroot/pgunittest/pgUnitTest/xml added to the repository ---(end of broadcast)--- TIP 7: You can help support the PostgreSQL pro

[COMMITTERS] pgunittest - pgUnitTest: New Directory

2007-05-31 Thread User Pgunittest
Update of /cvsroot/pgunittest/pgUnitTest/xml/comparator In directory pgfoundry.org:/tmp/cvs-serv23408/xml/comparator Log Message: Directory /cvsroot/pgunittest/pgUnitTest/xml/comparator added to the repository ---(end of broadcast)--- TIP 2: Don't

[COMMITTERS] pgunittest - pgUnitTest: New Directory

2007-05-31 Thread User Pgunittest
Update of /cvsroot/pgunittest/pgUnitTest/xml/reader In directory pgfoundry.org:/tmp/cvs-serv23408/xml/reader Log Message: Directory /cvsroot/pgunittest/pgUnitTest/xml/reader added to the repository ---(end of broadcast)--- TIP 3: Have you checked o

[COMMITTERS] pgsnmpd - pgsnmpd: Check PQntuples properly

2007-05-31 Thread User Eggyknap
Log Message: --- Check PQntuples properly Modified Files: -- pgsnmpd/RDBMS-MIB_src/rdbmsDbTable: rdbmsDbTable_data_access.c (r1.2 -> r1.3) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgsnmpd/pgsnmpd/RDBMS-MIB_src/rdbmsDbTable/rdbmsDbTable_data_access.c.dif

[COMMITTERS] pgsnmpd - pgsnmpd: Alpha version of regression tester complete

2007-05-31 Thread User Eggyknap
Log Message: --- Alpha version of regression tester complete Modified Files: -- pgsnmpd: pgsnmpd_regress.pl (r1.3 -> r1.4) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgsnmpd/pgsnmpd/pgsnmpd_regress.pl.diff?r1=1.3&r2=1.4) ---(end o

[COMMITTERS] pgunittest - pgUnitTest:

2007-05-31 Thread User Pgunittest
Log Message: --- Modified Files: -- pgUnitTest/doc/org/pgfoundry/pgunittest/parser/xml/class-use: XMLConstants.html (r1.1 -> r1.2) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgunittest/pgUnitTest/doc/org/pgfoundry/pgunittest/parser/xml/class-use/XMLConst

[COMMITTERS] pgsql: The shortcut exit that I recently added to ExecInitIndexScan()

2007-05-31 Thread Tom Lane
Log Message: --- The shortcut exit that I recently added to ExecInitIndexScan() for EXPLAIN-only operation was a little too short; it skipped initializing the node's result tuple type, which may be needed depending on what's above the indexscan node. Call ExecAssignResultTypeFromTL before

[COMMITTERS] pgsql: Change build_index_pathkeys() so that the expressions it builds

2007-05-31 Thread Tom Lane
Log Message: --- Change build_index_pathkeys() so that the expressions it builds to represent index key columns always have the type expected by the index's associated operators, ie, we add RelabelType nodes when dealing with binary-compatible index opclasses. This is needed to get varchar

Re: [COMMITTERS] pgsql: Make large sequential scans and VACUUMs work in a limited-size

2007-05-31 Thread Teodor Sigaev
Work not done in this commit: teach GiST and GIN indexes to use the vacuum BufferAccessStrategy for vacuum-driven fetches. Attached patch does it. Patch is rather simple - it just replaces ReadBuffer to ReadBufferWithStrategy in all vacuum-involved places. If there are no objections, I'll com

[COMMITTERS] pgsql: Make some messages more consistent

2007-05-31 Thread Peter Eisentraut
Log Message: --- Make some messages more consistent Modified Files: -- pgsql/contrib/pg_standby: pg_standby.c (r1.4 -> r1.5) (http://developer.postgresql.org/cvsweb.cgi/pgsql/contrib/pg_standby/pg_standby.c.diff?r1=1.4&r2=1.5) pgsql/src/backend/access/t

[COMMITTERS] pgunittest - pgUnitTest:

2007-05-31 Thread User Pgunittest
Log Message: --- Modified Files: -- pgUnitTest: Info.txt (r1.4 -> r1.5) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgunittest/pgUnitTest/Info.txt.diff?r1=1.4&r2=1.5) pgUnitTest/src/org/pgfoundry/pgunittest/unittest: XMLComparatorTest.java (r1

[COMMITTERS] pgunittest - pgUnitTest: New Directory

2007-05-31 Thread User Pgunittest
Update of /cvsroot/pgunittest/pgUnitTest/usr/code In directory pgfoundry.org:/tmp/cvs-serv48506/usr/code Log Message: Directory /cvsroot/pgunittest/pgUnitTest/usr/code added to the repository ---(end of broadcast)--- TIP 7: You can help support the

[COMMITTERS] pgsql: Replace ReadBuffer to ReadBufferWithStrategy in all

2007-05-31 Thread Teodor Sigaev
Log Message: --- Replace ReadBuffer to ReadBufferWithStrategy in all vacuum-involved places to implement limited-size "ring" of buffers for VACUUM for GIN & GIST Modified Files: -- pgsql/src/backend/access/gin: ginvacuum.c (r1.12 -> r1.13) (http://developer

Re: [COMMITTERS] pgsql: Make large sequential scans and VACUUMs work in a limited-size

2007-05-31 Thread Tom Lane
Teodor Sigaev <[EMAIL PROTECTED]> writes: >> Work not done in this commit: teach GiST and GIN indexes to use the vacuum >> BufferAccessStrategy for vacuum-driven fetches. > Attached patch does it. Patch is rather simple - it just replaces ReadBuffer > to > ReadBufferWithStrategy in all vacuum-in

Re: [COMMITTERS] pgsql: Fix overly-strict sanity check in BeginInternalSubTransaction

2007-05-31 Thread Heikki Linnakangas
Tom Lane wrote: Log Message: --- Fix overly-strict sanity check in BeginInternalSubTransaction that made it fail when used in a deferred trigger. Bug goes back to 8.0; no doubt the reason it hadn't been noticed is that we've been discouraging use of user-defined constraint triggers. Per

[COMMITTERS] pgsql: Downgrade some low-level startup messages to DEBUG1.

2007-05-31 Thread Peter Eisentraut
Log Message: --- Downgrade some low-level startup messages to DEBUG1. Modified Files: -- pgsql/src/backend/access/transam: xlog.c (r1.270 -> r1.271) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/access/transam/xlog.c.diff?r1=1.270&r2=1.271)