[COMMITTERS] pgsql: Add: < > * Allow cross-compiling by generating the zic database

2004-11-28 Thread Bruce Momjian
Log Message: --- Add: < > * Allow cross-compiling by generating the zic database on the target system Modified Files: -- pgsql/doc: TODO (r1.1402 -> r1.1403) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/TODO.diff?r1=1.1402&r2=1.1403)

[COMMITTERS] pgsql: Clean up initdb's error handling so that it prints something more

2004-11-28 Thread Tom Lane
Log Message: --- Clean up initdb's error handling so that it prints something more useful than just \'failed\' when there's a problem. Per gripe from Chris Albertson. In an unrelated change, use VACUUM FULL; VACUUM FREEZE; rather than a single VACUUM FULL FREEZE command, to respond to my

[COMMITTERS] pgsql: Update Turkish FAQ.

2004-11-28 Thread Bruce Momjian
Log Message: --- Update Turkish FAQ. Devrim GUNDUZ Modified Files: -- pgsql/doc: FAQ_turkish (r1.4 -> r1.5) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/FAQ_turkish.diff?r1=1.4&r2=1.5) pgsql/doc/src/FAQ: FAQ_turkish.html (r1.4 -> r1.5)

[COMMITTERS] pgsql: Add comment explaining possible compiler warning: /* *

2004-11-28 Thread Bruce Momjian
Log Message: --- Add comment explaining possible compiler warning: /* * Some compilers with throw a warning knowing this test can never be * true because off_t can't exceed the compared maximum. */ if (th->fileLen > MAX_TAR_MEMBER_FILELEN) die_horribly(AH,

[COMMITTERS] pgsql: Add: > * Auto-vacuum > o Move into the backend code > o Scan

2004-11-28 Thread Bruce Momjian
Log Message: --- Add: > * Auto-vacuum > o Move into the backend code > o Scan the buffer cache to find free space or use background writer > o Use free-space map information to guide refilling Modified Files: -- pgsql/doc: TODO (r1.1401 -> r1.1402

[COMMITTERS] pgsql: Typo fixes.

2004-11-28 Thread Bruce Momjian
Log Message: --- Typo fixes. Euler Taveira de Oliveira Modified Files: -- pgsql/doc: FAQ_brazilian (r1.2 -> r1.3) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/FAQ_brazilian.diff?r1=1.2&r2=1.3) pgsql/doc/src/FAQ: FAQ_brazilian.html (r1.

[COMMITTERS] pgsql: Have initdb display relative paths to start postmaster if used to

2004-11-28 Thread Bruce Momjian
Log Message: --- Have initdb display relative paths to start postmaster if used to invoke initdb, and display in a path-native way. Modified Files: -- pgsql/src/bin/initdb: initdb.c (r1.68 -> r1.69) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/bin/

[COMMITTERS] pgsql: Make pg_dumplo schema-aware.

2004-11-28 Thread Tom Lane
Log Message: --- Make pg_dumplo schema-aware. Karel Zak Modified Files: -- pgsql/contrib/pg_dumplo: lo_export.c (r1.12 -> r1.13) (http://developer.postgresql.org/cvsweb.cgi/pgsql/contrib/pg_dumplo/lo_export.c.diff?r1=1.12&r2=1.13) lo_import.c (r1.1

[COMMITTERS] pgsql: Avoid scribbling on original parsetree during DECLARE CURSOR.

2004-11-28 Thread Tom Lane
Log Message: --- Avoid scribbling on original parsetree during DECLARE CURSOR. This prevents problems when the DECLARE is in a portal and is executed repeatedly, as is possible in v3 protocol. Per analysis by Oliver Jowett, though I didn't use his patch exactly. Tags: REL7_4_STABLE

[COMMITTERS] pgsql: Avoid scribbling on original parsetree during DECLARE CURSOR.

2004-11-28 Thread Tom Lane
Log Message: --- Avoid scribbling on original parsetree during DECLARE CURSOR. This prevents problems when the DECLARE is in a portal and is executed repeatedly, as is possible in v3 protocol. Per analysis by Oliver Jowett, though I didn't use his patch exactly. Modified Files: -