[COMMITTERS] pgsql: Fix a typo.

2006-03-02 Thread Neil Conway
Log Message: --- Fix a typo. Modified Files: -- pgsql/src/backend/catalog: sql_features.txt (r1.13 -> r1.14) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/catalog/sql_features.txt.diff?r1=1.13&r2=1.14) ---(end of bro

[COMMITTERS] pgsql: Add CASCADE option to TRUNCATE.

2006-03-02 Thread Tom Lane
Log Message: --- Add CASCADE option to TRUNCATE. Joachim Wieland Modified Files: -- pgsql/doc/src/sgml/ref: truncate.sgml (r1.19 -> r1.20) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/ref/truncate.sgml.diff?r1=1.19&r2=1.20) pgsql/src/

[COMMITTERS] pgsql: Add: > * Allow FSM to return free space toward the beginning of

2006-03-02 Thread Bruce Momjian
Log Message: --- Add: > * Allow FSM to return free space toward the beginning of the heap file, > in hopes that empty pages at the end can be truncated by VACUUM Modified Files: -- pgsql/doc: TODO (r1.1776 -> r1.1777) (http://developer.postgresql.org/cvs

[COMMITTERS] pgsql: Appended is a small documentation patch that adds a note to the

2006-03-02 Thread Bruce Momjian
Log Message: --- Appended is a small documentation patch that adds a note to the CREATE ROLE page, based on what Tom Lane told me here: http://archives.postgresql.org/pgsql-general/2005-11/msg00998.php Joachim Wieland Tags: REL8_1_STABLE Modified Files: --

[COMMITTERS] pgsql: Appended is a small documentation patch that adds a note to the

2006-03-02 Thread Bruce Momjian
Log Message: --- Appended is a small documentation patch that adds a note to the CREATE ROLE page, based on what Tom Lane told me here: http://archives.postgresql.org/pgsql-general/2005-11/msg00998.php Joachim Wieland Modified Files: -- pgsql/doc/src/sgml/ref:

[COMMITTERS] pgsql: Add: > * Add missing parameter handling in to_char() > >

2006-03-02 Thread Bruce Momjian
Log Message: --- Add: > * Add missing parameter handling in to_char() > > http://archives.postgresql.org/pgsql-hackers/2005-12/msg00948.php > Modified Files: -- pgsql/doc: TODO (r1.1775 -> r1.1776) (http://developer.postgresql.org/cvsweb.cgi/pgsql/d

[COMMITTERS] pgsql: Add: > * Allow to_date() and to_timestamp() accept localized

2006-03-02 Thread Bruce Momjian
Log Message: --- Add: > * Allow to_date() and to_timestamp() accept localized month names Modified Files: -- pgsql/doc: TODO (r1.1774 -> r1.1775) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/TODO.diff?r1=1.1774&r2=1.1775) pgsql/doc/src/FAQ:

[COMMITTERS] pgsql: Add comment about localized month names for to_date and

2006-03-02 Thread Bruce Momjian
Log Message: --- Add comment about localized month names for to_date and to_timestamp. Modified Files: -- pgsql/src/backend/utils/adt: formatting.c (r1.106 -> r1.107) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/adt/formatting.c.diff?

[COMMITTERS] wilddb - aed: Add PDF, original schema, and put comments in new Postgres

2006-03-02 Thread User Turnstep
Log Message: --- Add PDF, original schema, and put comments in new Postgres one. Modified Files: -- aed: aed.schema.txt (r1.1.1.1 -> r1.2) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/wilddb/aed/aed.schema.txt.diff?r1=1.1.1.1&r2=1.2) Added Files: -

[COMMITTERS] docbot - docbot: Refactor authentication into a single subroutine,

2006-03-02 Thread User Turnstep
Log Message: --- Refactor authentication into a single subroutine, streamline it. Add EVERYONE_AUTHENTICATED for use in private networks. Remove working defaults, so we don't hammer the real db while testing. Pass the channel to the action and the authentication in anticipation of further

[COMMITTERS] pgsql: Arrange to call AbsorbFsyncRequests every so often while

2006-03-02 Thread Tom Lane
Log Message: --- Arrange to call AbsorbFsyncRequests every so often while performing a checkpoint in the bgwriter. This forestalls overflow of the fsync request queue, which is not fatal but causes considerable performance degradation when it occurs (because backends then have to do their

[COMMITTERS] pgsql: Remove unnecessary lo_lseek call in lo_open.

2006-03-02 Thread Tom Lane
Log Message: --- Remove unnecessary lo_lseek call in lo_open. Apparently there was once a need for it back in the neolithic era, but it's certainly dead code in any PG release we would recognize as such. Since it forces an additional network round trip to the backend, getting rid of it sh

[COMMITTERS] pgsql: Fix ancient error in large objects usage example: overwrite()

2006-03-02 Thread Tom Lane
Log Message: --- Fix ancient error in large objects usage example: overwrite() subroutine was opening with INV_READ flag and then writing. Prior to 8.1 the backend did not reject this, but now it does. Tags: REL8_1_STABLE Modified Files: -- pgsql/doc/src/sgml:

[COMMITTERS] pgsql: Fix ancient error in large objects usage example: overwrite()

2006-03-02 Thread Tom Lane
Log Message: --- Fix ancient error in large objects usage example: overwrite() subroutine was opening with INV_READ flag and then writing. Prior to 8.1 the backend did not reject this, but now it does. Modified Files: -- pgsql/doc/src/sgml: lobj.sgml (r1.37 -> r1.3

[COMMITTERS] python - fe: Check INSERT queries.

2006-03-02 Thread James William Pye
Log Message: --- Check INSERT queries. Modified Files: -- fe/test: tracenull.py (r1.4 -> r1.5) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/fe/test/tracenull.py.diff?r1=1.4&r2=1.5) ---(end of broadcast)---

[COMMITTERS] python - pq: Move message type check and make it more detailed.

2006-03-02 Thread James William Pye
Log Message: --- Move message type check and make it more detailed. Modified Files: -- pq/src: client3.py (r1.16 -> r1.17) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/pq/src/client3.py.diff?r1=1.16&r2=1.17) ---(end of broadc

[COMMITTERS] pgsql: Repair oidvectorrecv and int2vectorrecv, which I broke while

2006-03-02 Thread Tom Lane
Log Message: --- Repair oidvectorrecv and int2vectorrecv, which I broke while changing them to use array_recv :-(. Per report from Tim Kordas. Tags: REL8_1_STABLE Modified Files: -- pgsql/src/backend/utils/adt: int.c (r1.68 -> r1.68.2.1) (http://deve

[COMMITTERS] pgsql: Repair oidvectorrecv and int2vectorrecv, which I broke while

2006-03-02 Thread Tom Lane
Log Message: --- Repair oidvectorrecv and int2vectorrecv, which I broke while changing them to use array_recv :-(. Per report from Tim Kordas. Modified Files: -- pgsql/src/backend/utils/adt: int.c (r1.69 -> r1.70) (http://developer.postgresql.org/cvsweb.cg

[COMMITTERS] pgsql: Update OS X shared memory documentation for 10.3.9 and later to

2006-03-02 Thread Bruce Momjian
Log Message: --- Update OS X shared memory documentation for 10.3.9 and later to use /etc/sysctl.conf. Chris Campbell Tags: REL8_1_STABLE Modified Files: -- pgsql/doc/src/sgml: runtime.sgml (r1.357 -> r1.357.2.1) (http://developer.postgresql.org/cvsw

[COMMITTERS] pgsql: Update OS X shared memory documentation for 10.3.9 and later to

2006-03-02 Thread Bruce Momjian
Log Message: --- Update OS X shared memory documentation for 10.3.9 and later to use /etc/sysctl.conf. Chris Campbell Modified Files: -- pgsql/doc/src/sgml: runtime.sgml (r1.361 -> r1.362) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/runt

[COMMITTERS] wilddb - aed: Imported Sources

2006-03-02 Thread User Turnstep
Update of /cvsroot/wilddb/aed In directory pgfoundry.org:/tmp/cvs-serv93374 Log Message: Start CVS project aed. Status: Vendor Tag: initial Release Tags: turnstep N aed/aed.schema.txt No conflicts created by this import ---(end of broadcast)-

[COMMITTERS] pgsql: Backpatch to 8.1.X.

2006-03-02 Thread Bruce Momjian
Log Message: --- Backpatch to 8.1.X. Already applied to CVS HEAD. --- > True, but they're not being used where you'd expect. This seems to be > something to do with the fact that it's not pg_authid which is being >

[COMMITTERS] pgsql: Mark tsearch2 item as Tom's, not Teodor's.

2006-03-02 Thread Bruce Momjian
Log Message: --- Mark tsearch2 item as Tom's, not Teodor's. Tags: REL8_1_STABLE Modified Files: -- pgsql/doc/src/sgml: release.sgml (r1.400.2.23 -> r1.400.2.24) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/release.sgml.diff?r1=1.400.

[COMMITTERS] pgsql: Mark tsearch2 item as Tom's, not Teodor's.

2006-03-02 Thread Bruce Momjian
Log Message: --- Mark tsearch2 item as Tom's, not Teodor's. Modified Files: -- pgsql/doc/src/sgml: release.sgml (r1.423 -> r1.424) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/release.sgml.diff?r1=1.423&r2=1.424) -

Re: [COMMITTERS] pgsql: Update release notes.

2006-03-02 Thread Bruce Momjian
Updated. Thanks. --- Teodor Sigaev wrote: > > Improve speed of /contrib/tsearch2 index creation (Teodor) > > It was you, not me :) > > > -- > Teodor Sigaev E-mail: [EMAIL PROTECTED] >

[COMMITTERS] pgsql: Update TODO.detail/qsort.

2006-03-02 Thread Bruce Momjian
Log Message: --- Update TODO.detail/qsort. Modified Files: -- pgsql/doc/TODO.detail: qsort (r1.3 -> r1.4) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/TODO.detail/qsort.diff?r1=1.3&r2=1.4) ---(end of broadcast)-

[COMMITTERS] pgsql: Update TODO.detail/qsort.

2006-03-02 Thread Bruce Momjian
Log Message: --- Update TODO.detail/qsort. Modified Files: -- pgsql/doc/TODO.detail: qsort (r1.2 -> r1.3) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/TODO.detail/qsort.diff?r1=1.2&r2=1.3) ---(end of broadcast)-

[COMMITTERS] pgsql: Significantly improve ranking: 1) rank_cd now use weight of

2006-03-02 Thread Teodor Sigaev
Log Message: --- Significantly improve ranking: 1) rank_cd now use weight of lexemes 2) rank_cd and rank can use any combination of normalization methods: no normalization normalization by log(length of document) -/--- by length of document -/

[COMMITTERS] pgsql: Update TODO.detail/qsort.

2006-03-02 Thread Bruce Momjian
Log Message: --- Update TODO.detail/qsort. Modified Files: -- pgsql/doc/TODO.detail: qsort (r1.1 -> r1.2) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/TODO.detail/qsort.diff?r1=1.1&r2=1.2) ---(end of broadcast)-

[COMMITTERS] pgsql: Add to TODO.detail for qsort.

2006-03-02 Thread Bruce Momjian
Log Message: --- Add to TODO.detail for qsort. Added Files: --- pgsql/doc/TODO.detail: qsort (r1.1) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/TODO.detail/qsort?rev=1.1&content-type=text/x-cvsweb-markup) ---(end of broadcast)

[COMMITTERS] pgsql: Add: > * Improve port/qsort() to handle sorts with 50% unique

2006-03-02 Thread Bruce Momjian
Log Message: --- Add: > * Improve port/qsort() to handle sorts with 50% unique and 50% duplicate > value [qsort] > > This involves choosing better pivot points for the quicksort. Modified Files: -- pgsql/doc: TODO (r1.1773 -> r1.1774) (http://develope