[COMMITTERS] pgsql-server: Tweak HPUX shared-library build flags, per Shinji

2004-10-07 Thread Tom Lane
Log Message: --- Tweak HPUX shared-library build flags, per Shinji Teragaito. Modified Files: -- pgsql-server/src: Makefile.shlib (r1.78 -> r1.79) (http://developer.postgresql.org/cvsweb.cgi/pgsql-server/src/Makefile.shlib.diff?r1=1.78&r2=1.79) ---

[COMMITTERS] pgsql-server: Pull comment down into its own paragraph.

2004-10-07 Thread Bruce Momjian
Log Message: --- Pull comment down into its own paragraph. Modified Files: -- pgsql-server/doc: TODO (r1.1357 -> r1.1358) (http://developer.postgresql.org/cvsweb.cgi/pgsql-server/doc/TODO.diff?r1=1.1357&r2=1.1358) ---(end of broadca

[COMMITTERS] pgsql-server: Add: * Consider parallel processing a single query

2004-10-07 Thread Bruce Momjian
Log Message: --- Add: * Consider parallel processing a single query This would involve using multiple threads or processes to do optimization, sorting, or execution of single query. The major advantage of such a feature would be to allow multiple CPUs to work together to process a

[COMMITTERS] pgsql-server: Update CIDR regresion tests to test for network masks

2004-10-07 Thread Bruce Momjian
Log Message: --- Update CIDR regresion tests to test for network masks inside the last byte being tested, to catch any future breakage. Modified Files: -- pgsql-server/src/test/regress/expected: inet.out (r1.18 -> r1.19) (http://developer.postgresql.org/cvs

[COMMITTERS] pgsql-server: Whack some sense into the configuration-file-location

2004-10-07 Thread Tom Lane
Log Message: --- Whack some sense into the configuration-file-location patch. Refactor code into something reasonably understandable, cause use of the feature to not fail in standalone backends or in EXEC_BACKEND case, fix sloppy guc.c table entries, make the documentation minimally usable.

[COMMITTERS] pgsql-server: Do proper testing of CIDR bits against network mask, e.g.

2004-10-07 Thread Bruce Momjian
Log Message: --- Do proper testing of CIDR bits against network mask, e.g. don't allow: test=# select '204.248.199.1/31'::cidr; Previous releases erroneously accepted such addresses. WARN IN RELEASE NOTES Kevin Brintnall Modified Files: -- pgsql-server/s

[COMMITTERS] pgsql-server: Remove benchmark comment.

2004-10-07 Thread Bruce Momjian
Log Message: --- Remove benchmark comment. Modified Files: -- pgsql-server/src/test/bench: runwisc.sh (r1.7 -> r1.8) (http://developer.postgresql.org/cvsweb.cgi/pgsql-server/src/test/bench/runwisc.sh.diff?r1=1.7&r2=1.8) ---(end of b

[COMMITTERS] pgsql-server: Change get_rule_expr so that when the input is a List, it

2004-10-07 Thread Tom Lane
Log Message: --- Change get_rule_expr so that when the input is a List, it displays the list elements comma-separated instead of barfing. This allows elimination of half a dozen redundant copies of that behavior, and also makes the world safe again for pg_get_expr() applied to pg_index.ind

[COMMITTERS] pgbuildfarm - client-code: fix logdir name typo

2004-10-07 Thread User Andrewd
Log Message: --- fix logdir name typo Modified Files: -- client-code: run_build.pl (r1.7 -> r1.8) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pgbuildfarm/client-code/run_build.pl.diff?r1=1.7&r2=1.8) ---(end of broadcast)---

[COMMITTERS] pgsql-server: Remove mention of -Q option for bench.

2004-10-07 Thread Bruce Momjian
Log Message: --- Remove mention of -Q option for bench. Modified Files: -- pgsql-server/src/test/bench: runwisc.sh (r1.6 -> r1.7) (http://developer.postgresql.org/cvsweb.cgi/pgsql-server/src/test/bench/runwisc.sh.diff?r1=1.6&r2=1.7) ---

[COMMITTERS] pginstaller - pginst: Fix psql shortcut when installation runs on a

2004-10-07 Thread User Mha
Log Message: --- Fix psql shortcut when installation runs on a non-default port. Fixes bug 1000115. Modified Files: -- pginst/wxs: pginst.wxs (r1.74 -> r1.75) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pginstaller/pginst/wxs/pginst.wxs.diff?r1=1.74&r2=1.7

[COMMITTERS] pginstaller - pginst: Update to work with WiX 2.0.2110.0: * Strict

2004-10-07 Thread User Mha
Log Message: --- Update to work with WiX 2.0.2110.0: * Strict checking of short names <= 8 characters, fix all other instances. * Name and LongName can't both be used when they are identical. Also needed fix in the perl utility scripts. * dash (-) not permitted in identifier. * FileGroup

Re: [COMMITTERS] pgsql-server: Add missing null terminator to escaped

2004-10-07 Thread Tom Lane
Bruce Momjian <[EMAIL PROTECTED]> writes: > Thanks. Wonder why my testing worked? I guess xmalloc was giving me > zeroed memory. One-shot programs like initdb are very likely to see all-zeroed memory, since that's what the kernel gives you. It's only after you start freeing things that you'll g

Re: [COMMITTERS] pgsql-server: Add missing null terminator to escaped

2004-10-07 Thread Bruce Momjian
Thanks. Wonder why my testing worked? I guess xmalloc was giving me zeroed memory. --- Tom Lane wrote: > Log Message: > --- > Add missing null terminator to escaped string; clean up unnecessarily > obscurantist cod

[COMMITTERS] pgsql-server: Move -DPLPERL_HAVE_UID_GID to the plperl Makefile, for

2004-10-07 Thread Bruce Momjian
Log Message: --- Move -DPLPERL_HAVE_UID_GID to the plperl Makefile, for Win32 only. Modified Files: -- pgsql-server/src/pl/plperl: GNUmakefile (r1.15 -> r1.16) (http://developer.postgresql.org/cvsweb.cgi/pgsql-server/src/pl/plperl/GNUmakefile.diff?r1=1.15&

[COMMITTERS] pgsql-server: Add missing null terminator to escaped string; clean up

2004-10-07 Thread Tom Lane
Log Message: --- Add missing null terminator to escaped string; clean up unnecessarily obscurantist coding conventions. Modified Files: -- pgsql-server/src/bin/initdb: initdb.c (r1.58 -> r1.59) (http://developer.postgresql.org/cvsweb.cgi/pgsql-server/src/bi

[COMMITTERS] pgsql-server: Add PLperl workaround for Win32 to the *.xs file.

2004-10-07 Thread Bruce Momjian
Log Message: --- Add PLperl workaround for Win32 to the *.xs file. Modified Files: -- pgsql-server/src/pl/plperl: SPI.xs (r1.7 -> r1.8) (http://developer.postgresql.org/cvsweb.cgi/pgsql-server/src/pl/plperl/SPI.xs.diff?r1=1.7&r2=1.8) --

[COMMITTERS] pgsql-server: Fix problems with SQL functions returning rowtypes that

2004-10-07 Thread Tom Lane
Log Message: --- Fix problems with SQL functions returning rowtypes that have dropped columns. The returned tuple needs to have appropriate NULL columns inserted so that it actually matches the declared rowtype. It seemed convenient to use a JunkFilter for this, so I made some cleanups an

[COMMITTERS] pginstaller - web: Fix some wording to be more clear and correct.

2004-10-07 Thread User Mha
Log Message: --- Fix some wording to be more clear and correct. Modified Files: -- web: FAQ_windows.html (r1.7 -> r1.8) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pginstaller/web/FAQ_windows.html.diff?r1=1.7&r2=1.8) ---(end of bro

[COMMITTERS] pgsql-server: Add one more byte to malloc for null storage.

2004-10-07 Thread Bruce Momjian
Log Message: --- Add one more byte to malloc for null storage. Modified Files: -- pgsql-server/src/bin/initdb: initdb.c (r1.57 -> r1.58) (http://developer.postgresql.org/cvsweb.cgi/pgsql-server/src/bin/initdb/initdb.c.diff?r1=1.57&r2=1.58)

[COMMITTERS] pgsql-server: Remove unneeded dash.

2004-10-07 Thread Bruce Momjian
Log Message: --- Remove unneeded dash. Modified Files: -- pgsql-server/src/backend/postmaster: postmaster.c (r1.428 -> r1.429) (http://developer.postgresql.org/cvsweb.cgi/pgsql-server/src/backend/postmaster/postmaster.c.diff?r1=1.428&r2=1.429)

[COMMITTERS] pgsql-server: Update comment to fix nibble mention: * We are not sure

2004-10-07 Thread Bruce Momjian
Log Message: --- Update comment to fix nibble mention: * We are not sure how much precision is in tv_usec, so we * swap the high and low 16 bits of 'later' and XOR them with * 'earlier'. On the off chance that the result is 0, we * loop until it isn't.

[COMMITTERS] pgsql-server: Escape single quotes and backslashes used in locales

2004-10-07 Thread Bruce Momjian
Log Message: --- Escape single quotes and backslashes used in locales placed in postgresql.conf. Zhong Xubin Modified Files: -- pgsql-server/src/bin/initdb: initdb.c (r1.56 -> r1.57) (http://developer.postgresql.org/cvsweb.cgi/pgsql-server/src/bin/initdb/i

[COMMITTERS] pgsql-server: Prevent install error message when doing cmp on empty

2004-10-07 Thread Bruce Momjian
Log Message: --- Prevent install error message when doing cmp on empty tree. Modified Files: -- pgsql-server/src/include: Makefile (r1.13 -> r1.14) (http://developer.postgresql.org/cvsweb.cgi/pgsql-server/src/include/Makefile.diff?r1=1.13&r2=1.14)

[COMMITTERS] pgsql-server: Adjust comments previously moved to column 1 by pgident.

2004-10-07 Thread Bruce Momjian
Log Message: --- Adjust comments previously moved to column 1 by pgident. Modified Files: -- pgsql-server/contrib/dbase: dbf.c (r1.6 -> r1.7) (http://developer.postgresql.org/cvsweb.cgi/pgsql-server/contrib/dbase/dbf.c.diff?r1=1.6&r2=1.7) pgsql-server/c

[COMMITTERS] pgsql-server: Back out unindented modification to file.

2004-10-07 Thread Bruce Momjian
Log Message: --- Back out unindented modification to file. Modified Files: -- pgsql-server/src/backend/commands: vacuum.c (r1.293 -> r1.294) (http://developer.postgresql.org/cvsweb.cgi/pgsql-server/src/backend/commands/vacuum.c.diff?r1=1.293&r2=1.294)

[COMMITTERS] pgsql-server: Indent comment pushed to new line by else so it is

2004-10-07 Thread Bruce Momjian
Log Message: --- Indent comment pushed to new line by else so it is indented by BSD indent. Modified Files: -- pgsql-server/src/backend/commands: vacuum.c (r1.292 -> r1.293) (http://developer.postgresql.org/cvsweb.cgi/pgsql-server/src/backend/commands/vacuu

[COMMITTERS] pgsql-server: Add as binary mode

2004-10-07 Thread Bruce Momjian
Log Message: --- Add as binary mode Added Files: --- pgsql-server/src/port: win32.ico (r1.3) (http://developer.postgresql.org/cvsweb.cgi/pgsql-server/src/port/win32.ico?rev=1.3&content-type=text/x-cvsweb-markup) ---(end of broadcast)---

[COMMITTERS] pgsql-server: re-add as binary

2004-10-07 Thread Bruce Momjian
Log Message: --- re-add as binary Removed Files: - pgsql-server/src/port: win32.ico (http://developer.postgresql.org/cvsweb.cgi/pgsql-server/src/port/win32.ico) ---(end of broadcast)--- TIP 5: Have you checked

[COMMITTERS] pgsql-server: Improve pgindent processing of comment after 'else'.

2004-10-07 Thread Bruce Momjian
Log Message: --- Improve pgindent processing of comment after 'else'. Improve comment of pg_dump Win32 link workaround. Modified Files: -- pgsql-server/src/bin/pg_dump: Makefile (r1.56 -> r1.57) (http://developer.postgresql.org/cvsweb.cgi/pgsql-server/src/b