[COMMITTERS] pgsql-server: New build for the 7.4.4 release.

2004-08-12 Thread Kris Jurka
Log Message: --- New build for the 7.4.4 release. Tags: REL7_4_STABLE Modified Files: -- pgsql-server/src/interfaces/jdbc/org/postgresql: Driver.java.in (r1.36.2.5 -> r1.36.2.6) (http://developer.postgresql.org/cvsweb.cgi/pgsql-server/src/interfaces/j

[COMMITTERS] pgsql-server: Change order of operations in ALTER TABLE SET TABLESPACE

2004-08-12 Thread Tom Lane
Log Message: --- Change order of operations in ALTER TABLE SET TABLESPACE so that we don't hold an open file reference to the original table at the end. This is a good thing in any case, particularly so on Windows which cannot drop the table file otherwise. Modified Files: --

[COMMITTERS] pgsql-server: Mention the installer doesn't run on NT4.

2004-08-12 Thread Bruce Momjian
Log Message: --- Mention the installer doesn't run on NT4. Modified Files: -- pgsql-server/doc/src/sgml: release.sgml (r1.280 -> r1.281) (http://developer.postgresql.org/cvsweb.cgi/pgsql-server/doc/src/sgml/release.sgml.diff?r1=1.280&r2=1.281)

[COMMITTERS] pgsql-server: Add: > o Add ALTER INDEX that works just like ALTER

2004-08-12 Thread Bruce Momjian
Log Message: --- Add: > o Add ALTER INDEX that works just like ALTER TABLE already does > on an index Modified Files: -- pgsql-server/doc: TODO (r1.1327 -> r1.1328) (http://developer.postgresql.org/cvsweb.cgi/pgsql-server/doc/TODO.diff?r1=1.1

[COMMITTERS] pgsql-server: Allow commas in BEGIN, START TRANSACTION, and SET

2004-08-12 Thread Tom Lane
Log Message: --- Allow commas in BEGIN, START TRANSACTION, and SET TRANSACTION, as required by the SQL standard. For backwards compatibility, however, continue to accept the syntax without. Minor editorialization in the reference pages for these commands, too. Modified Files: ---

[COMMITTERS] pgsql-server: Allow optional SAVEPOINT keyword in RELEASE and ROLLBACK

2004-08-12 Thread Tom Lane
Log Message: --- Allow optional SAVEPOINT keyword in RELEASE and ROLLBACK TO, for greater compliance with SQL2003 spec syntax. Oliver Jowett Modified Files: -- pgsql-server/doc/src/sgml/ref: allfiles.sgml (r1.60 -> r1.61) (http://developer.postgresql.org/c

[COMMITTERS] pgsql-server: Add: > * Allow finer control over the caching of prepared

2004-08-12 Thread Bruce Momjian
Log Message: --- Add: > * Allow finer control over the caching of prepared query plans > > Currently, queries prepared via the libpq API are planned on first > execute using the supplied parameters --- allow SQL PREPARE to do the > same. Also, allow control over replanning prepared

[COMMITTERS] pgsql-server: dbsize modification to support tablespaces Gavin Sherry

2004-08-12 Thread Bruce Momjian
Log Message: --- dbsize modification to support tablespaces Gavin Sherry Modified Files: -- pgsql-server/contrib/dbsize: dbsize.c (r1.10 -> r1.11) (http://developer.postgresql.org/cvsweb.cgi/pgsql-server/contrib/dbsize/dbsize.c.diff?r1=1.10&r2=1.11) -

[COMMITTERS] pgsql-server: Add mention of "WIN32" COPY.

2004-08-12 Thread Bruce Momjian
Log Message: --- Add mention of "WIN32" COPY. Modified Files: -- pgsql-server/src/backend/access/transam: xlog.c (r1.160 -> r1.161) (http://developer.postgresql.org/cvsweb.cgi/pgsql-server/src/backend/access/transam/xlog.c.diff?r1=1.160&r2=1.161) -

[COMMITTERS] pgsql-server: Add make_native_path() because Win32 COPY is an internal

2004-08-12 Thread Bruce Momjian
Log Message: --- Add make_native_path() because Win32 COPY is an internal CMD.EXE command and doesn't process forward slashes in the same way as external commands. Quoting the first argument to COPY does not convert forward to backward slashes, but COPY does properly process quoted forward

[COMMITTERS] pgsql-server: Cleanup Win32 COPY handling, and move archive examples to

2004-08-12 Thread Bruce Momjian
Log Message: --- Cleanup Win32 COPY handling, and move archive examples to SGML. Modified Files: -- pgsql-server/doc/src/sgml: runtime.sgml (r1.275 -> r1.276) (http://developer.postgresql.org/cvsweb.cgi/pgsql-server/doc/src/sgml/runtime.sgml.diff?r1=1.275&r

[COMMITTERS] pgsql-server: Be more aggressive about adding flags to thread compiles.

2004-08-12 Thread Bruce Momjian
Log Message: --- Be more aggressive about adding flags to thread compiles. The configure test only tests for building a binary, not building a shared library. On Linux, you can build a binary with -pthread, but you can't build a binary that uses a threaded shared library unless you also u

[COMMITTERS] pgsql-server: Minor style cleanup of thread test script.

2004-08-12 Thread Bruce Momjian
Log Message: --- Minor style cleanup of thread test script. Modified Files: -- pgsql-server/config: acx_pthread.m4 (r1.2 -> r1.3) (http://developer.postgresql.org/cvsweb.cgi/pgsql-server/config/acx_pthread.m4.diff?r1=1.2&r2=1.3) ---