[COMMITTERS] pgsql: Add E'' syntax so eventually normal strings can treat backslashes

2005-06-25 Thread Bruce Momjian
Log Message: --- Add E'' syntax so eventually normal strings can treat backslashes literally. Add GUC variables: "escape_string_warning" - warn about backslashes in non-E strings "escape_string_syntax" - supports E'' syntax? "standard_compliant_strings" - treats ba

[COMMITTERS] pgsql: Fix a couple of items that should be declared Oid not int.

2005-06-25 Thread Tom Lane
Log Message: --- Fix a couple of items that should be declared Oid not int. Purely cosmetic at the moment, but someday Oid might be 64 bits ... Modified Files: -- pgsql/src/backend/postmaster: pgstat.c (r1.95 -> r1.96) (http://developer.postgresql.org/cvsw

[COMMITTERS] pgsql: Remove forced CHECKPOINT in regression tests --- redundant now

2005-06-25 Thread Tom Lane
Log Message: --- Remove forced CHECKPOINT in regression tests --- redundant now that CREATE DATABASE does one internally. Modified Files: -- pgsql/src/test/regress: pg_regress.sh (r1.57 -> r1.58) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/test/re

[COMMITTERS] pgsql: Force a checkpoint before committing a CREATE DATABASE command.

2005-06-25 Thread Tom Lane
Log Message: --- Force a checkpoint before committing a CREATE DATABASE command. This should fix the recent reports of "index is not a btree" failures, as well as preventing a more obscure race condition involving changes to a template database just after copying it with CREATE DATABASE.

[COMMITTERS] pgsql: Force a checkpoint before committing a CREATE DATABASE command.

2005-06-25 Thread Tom Lane
Log Message: --- Force a checkpoint before committing a CREATE DATABASE command. This should fix the recent reports of "index is not a btree" failures, as well as preventing a more obscure race condition involving changes to a template database just after copying it with CREATE DATABASE.

[COMMITTERS] tablelog - tablelog: added an intro

2005-06-25 Thread User Andreas
Log Message: --- added an intro Modified Files: -- tablelog: README.tablelog (r1.1 -> r1.2) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/tablelog/tablelog/README.tablelog.diff?r1=1.1&r2=1.2) ---(end of broadcast)

[COMMITTERS] tablelog - tablelog: renamed all files to match newname changed

2005-06-25 Thread User Andreas
Log Message: --- renamed all files to match newname changed parameter list in all functions docu updated Makefile.nocontrib updated new way to fetch data in the restore function, should be faster and has less code overhead Modified Files: -- tablelog: Makefile.nocon

[COMMITTERS] python - be: Default to this version of Python(needs to get it from the

2005-06-25 Thread James William Pye
Log Message: --- Default to this version of Python(needs to get it from the options). Don't import select, as we do not use it. Modified Files: -- be/test: regress.py (r1.3 -> r1.4) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/be/test/regress.py.diff

[COMMITTERS] pgsql: Fix ancient memory leak in index_create():

2005-06-25 Thread Tom Lane
Log Message: --- Fix ancient memory leak in index_create(): RelationInitIndexAccessInfo was being called twice in normal operation, leading to a leak of one set of relcache subsidiary info. Per report from Jeff Gold. Tags: REL7_3_STABLE Modified Files: -- pgsql/src/b

[COMMITTERS] pgsql: Fix ancient memory leak in index_create():

2005-06-25 Thread Tom Lane
Log Message: --- Fix ancient memory leak in index_create(): RelationInitIndexAccessInfo was being called twice in normal operation, leading to a leak of one set of relcache subsidiary info. Per report from Jeff Gold. Tags: REL7_4_STABLE Modified Files: -- pgsql/src/b

[COMMITTERS] pgsql: Fix ancient memory leak in index_create():

2005-06-25 Thread Tom Lane
Log Message: --- Fix ancient memory leak in index_create(): RelationInitIndexAccessInfo was being called twice in normal operation, leading to a leak of one set of relcache subsidiary info. Per report from Jeff Gold. Tags: REL8_0_STABLE Modified Files: -- pgsql/src/b

[COMMITTERS] pgsql: Fix ancient memory leak in index_create():

2005-06-25 Thread Tom Lane
Log Message: --- Fix ancient memory leak in index_create(): RelationInitIndexAccessInfo was being called twice in normal operation, leading to a leak of one set of relcache subsidiary info. Per report from Jeff Gold. Modified Files: -- pgsql/src/backend/catalog: in

[COMMITTERS] pgsql: Add: > o Pass arrays natively instead of as text between plperl

2005-06-25 Thread Bruce Momjian
Log Message: --- Add: > o Pass arrays natively instead of as text between plperl and postgres > o Add support for polymorphic arguments and return types to plperl Modified Files: -- pgsql/doc: TODO (r1.1577 -> r1.1578) (http://developer.postgre

[COMMITTERS] pgsql: Update: < * Allow per-user, per-group quotas per-tablespace > *

2005-06-25 Thread Bruce Momjian
Log Message: --- Update: < * Allow per-user, per-group quotas per-tablespace > * Allow per-tablespace quotas Modified Files: -- pgsql/doc: TODO (r1.1576 -> r1.1577) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/TODO.diff?r1=1.1576&r2=1.1577) pg

Re: [COMMITTERS] pgsql: Update: < * Allow per-user and per-tablespaces

2005-06-25 Thread Bruce Momjian
Tom Lane wrote: > [EMAIL PROTECTED] (Bruce Momjian) writes: > >> * Allow per-user, per-group quotas per-tablespace > > AFAIR, per-tablespace was the only alternative that had much support. Oh, OK. I was unclear on the conclusion. Will update. -- Bruce Momjian| http:/

[COMMITTERS] python - be: Fix build on darwin.

2005-06-25 Thread James William Pye
Log Message: --- Fix build on darwin. Modified Files: -- be: setup.py (r1.14 -> r1.15) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/be/setup.py.diff?r1=1.14&r2=1.15) be/lib: ldistutils.py (r1.7 -> r1.8) (http://cvs.pgfoundry.org/

[COMMITTERS] python - be: Mark _init as the constructor for Darwin support.

2005-06-25 Thread James William Pye
Log Message: --- Mark _init as the constructor for Darwin support. Assert that Python is initialized at the PostgreSQL entry points. Modified Files: -- be/src: pl.c (r1.17 -> r1.18) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/be/src/pl.c.diff?r1=1.1