[COMMITTERS] pgsql: This patch changes the use of varargs.h to stdarg.h as required

2005-04-14 Thread Neil Conway
Log Message: --- This patch changes the use of varargs.h to stdarg.h as required by modern versions of GCC. Niels Breet Modified Files: -- pgsql/src/tools/entab: halt.c (r1.5 -> r1.6) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/tools/entab/halt.c

[COMMITTERS] pgsql: Remove an unused variable "waitingForSignal".

2005-04-14 Thread Neil Conway
Log Message: --- Remove an unused variable "waitingForSignal". From Qingqing Zhou. Modified Files: -- pgsql/src/backend/storage/lmgr: proc.c (r1.156 -> r1.157) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/storage/lmgr/proc.c.diff?r1=1.156&r

[COMMITTERS] python - web: Only link the project title, to set it off from

2005-04-14 Thread User Jwp
Log Message: --- Only link the project title, to set it off from description. Add project/doc and project/web to Index' list. Other minor fixes. Modified Files: -- web/src/documentation/content/xdocs: index.xml (r1.4 -> r1.5) (http://cvs.pgfoundry.org/cgi-b

[COMMITTERS] python - web: Add layout structure overview

2005-04-14 Thread User Jwp
Log Message: --- Add layout structure overview Modified Files: -- web/src/documentation/content/xdocs/project: lo.xml (r1.3 -> r1.4) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/web/src/documentation/content/xdocs/project/lo.xml.diff?r1=1.3&r2=1.4)

Re: [COMMITTERS] pgsql: Completion of project to use fixed OIDs for

2005-04-14 Thread Tom Lane
Christopher Kings-Lynne <[EMAIL PROTECTED]> writes: >> Completion of project to use fixed OIDs for all system catalogs and >> indexes. > Did all of this end up buying much performance improvement? Not much in a simple test. It did make the backend executable a bit smaller though, and simplified

Re: [COMMITTERS] pgsql: Completion of project to use fixed OIDs for

2005-04-14 Thread Christopher Kings-Lynne
Completion of project to use fixed OIDs for all system catalogs and indexes. Replace all heap_openr and index_openr calls by heap_open and index_open. Remove runtime lookups of catalog OID numbers in various places. Remove relcache's support for looking up system catalogs by name. Bulky but mos

[COMMITTERS] python - web: Add vim source formatting magic.

2005-04-14 Thread User Jwp
Log Message: --- Add vim source formatting magic. Minor fixes/changes. Modified Files: -- web/src/documentation: skinconf.xml (r1.1.1.1 -> r1.2) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/web/src/documentation/skinconf.xml.diff?r1=1.1.1.1&r2=1.2)

[COMMITTERS] python - be: Add vim source formatting magic.

2005-04-14 Thread User Jwp
Log Message: --- Add vim source formatting magic. (Emacs stuff can come later if people want it) Other minor fixes. Modified Files: -- be/include/pypg: call.h (r1.1 -> r1.2) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/python/be/include/pypg/call.h.diff?r1=

[COMMITTERS] python - be: Don't bail if !='posix'.

2005-04-14 Thread User Jwp
Log Message: --- Don't bail if !='posix'. The exception raised from get_output will probably be more descriptive than current. Also add vim source formatting magic. Modified Files: -- be: setup.py (r1.4 -> r1.5) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/

[COMMITTERS] pgsql: Done > * -Use indexes for MIN() and MAX()

2005-04-14 Thread Bruce Momjian
Log Message: --- Done > * -Use indexes for MIN() and MAX() Modified Files: -- pgsql/doc: TODO (r1.1488 -> r1.1489) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/TODO.diff?r1=1.1488&r2=1.1489) ---(end of broadcast)---

[COMMITTERS] pgsql: Make equalTupleDescs() compare attlen/attbyval/attalign rather

2005-04-14 Thread Tom Lane
Log Message: --- Make equalTupleDescs() compare attlen/attbyval/attalign rather than assuming comparison of atttypid is sufficient. In a dropped column atttypid will be 0, and we'd better check the physical-storage data to make sure the tupdescs are physically compatible. I do not believe

[COMMITTERS] pgsql: Make equalTupleDescs() compare attlen/attbyval/attalign rather

2005-04-14 Thread Tom Lane
Log Message: --- Make equalTupleDescs() compare attlen/attbyval/attalign rather than assuming comparison of atttypid is sufficient. In a dropped column atttypid will be 0, and we'd better check the physical-storage data to make sure the tupdescs are physically compatible. I do not believe

[COMMITTERS] pgsql: Put back blessing of record-function tupledesc, which I removed

2005-04-14 Thread Tom Lane
Log Message: --- Put back blessing of record-function tupledesc, which I removed in a fit of over-optimization. Modified Files: -- pgsql/src/backend/executor: nodeFunctionscan.c (r1.32 -> r1.33) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/

[COMMITTERS] pgsql: Don't try to constant-fold functions returning RECORD, since the

2005-04-14 Thread Tom Lane
Log Message: --- Don't try to constant-fold functions returning RECORD, since the optimizer isn't presently set up to pass them an expected tuple descriptor. Bug has been there since 7.3 but was just recently reported by Thomas Hallgren. Tags: REL7_3_STABLE Modified Files: -

[COMMITTERS] pgsql: Don't try to constant-fold functions returning RECORD, since the

2005-04-14 Thread Tom Lane
Log Message: --- Don't try to constant-fold functions returning RECORD, since the optimizer isn't presently set up to pass them an expected tuple descriptor. Bug has been there since 7.3 but was just recently reported by Thomas Hallgren. Modified Files: -- pgsql/src/backen

[COMMITTERS] pgsql: Don't try to constant-fold functions returning RECORD, since the

2005-04-14 Thread Tom Lane
Log Message: --- Don't try to constant-fold functions returning RECORD, since the optimizer isn't presently set up to pass them an expected tuple descriptor. Bug has been there since 7.3 but was just recently reported by Thomas Hallgren. Tags: REL7_4_STABLE Modified Files: -

[COMMITTERS] pgsql: Don't try to constant-fold functions returning RECORD, since the

2005-04-14 Thread Tom Lane
Log Message: --- Don't try to constant-fold functions returning RECORD, since the optimizer isn't presently set up to pass them an expected tuple descriptor. Bug has been there since 7.3 but was just recently reported by Thomas Hallgren. Tags: REL8_0_STABLE Modified Files: -

[COMMITTERS] pgsql: Must count '*' characters as potential arguments.

2005-04-14 Thread Tom Lane
Log Message: --- Must count '*' characters as potential arguments. Modified Files: -- pgsql/src/port: snprintf.c (r1.26 -> r1.27) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/port/snprintf.c.diff?r1=1.26&r2=1.27) ---(end of

[COMMITTERS] pgsql: Marginal hack to use a specialized hash function for dynahash

2005-04-14 Thread Tom Lane
Log Message: --- Marginal hack to use a specialized hash function for dynahash hashtables whose keys are OIDs. The only one that looks particularly performance critical is the relcache hashtable, but as long as we've got the function we may as well use it wherever it's applicable. Modifie

[COMMITTERS] pgsql: Completion of project to use fixed OIDs for all system catalogs

2005-04-14 Thread Tom Lane
Log Message: --- Completion of project to use fixed OIDs for all system catalogs and indexes. Replace all heap_openr and index_openr calls by heap_open and index_open. Remove runtime lookups of catalog OID numbers in various places. Remove relcache's support for looking up system catalog

[COMMITTERS] docbot - docbot: Bot now rereads config on SIGHUP.

2005-04-14 Thread User Pjmodos
Log Message: --- Bot now rereads config on SIGHUP. Changed ARRAY separator from space to semicolon in config so channels with keys can be specified. Changed all my_nick comparsions to case insensitive Modified Files: -- docbot: docbot.pl (r1.39 -> r1.40)

[COMMITTERS] docbot - docbot: Actually use config

2005-04-14 Thread User Pjmodos
Log Message: --- Actually use config Modified Files: -- docbot: docbot.pl (r1.38 -> r1.39) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/docbot/docbot/docbot.pl.diff?r1=1.38&r2=1.39) ---(end of broadcast)--- T

[COMMITTERS] pgsql: Added patch by Philip Yarra <[EMAIL PROTECTED]> for a

2005-04-14 Thread Michael Meskes
Log Message: --- Added patch by Philip Yarra <[EMAIL PROTECTED]> for a bug in thread support. Tags: REL8_0_STABLE Modified Files: -- pgsql/src/interfaces/ecpg/ecpglib: connect.c (r1.24 -> r1.24.4.1) (http://developer.postgresql.org/cvsweb.cgi/pgsql/sr

[COMMITTERS] pgsql: Added patch by Philip Yarra <[EMAIL PROTECTED]> for a

2005-04-14 Thread Michael Meskes
Log Message: --- Added patch by Philip Yarra <[EMAIL PROTECTED]> for a bug in thread support. Modified Files: -- pgsql/src/interfaces/ecpg: ChangeLog (r1.288 -> r1.289) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/ecpg/ChangeLog.diff?r1=