[COMMITTERS] pgsql: Typo fixes.

2004-12-02 Thread Bruce Momjian
Log Message: --- Typo fixes. Modified Files: -- pgsql/doc/src/sgml: external-projects.sgml (r1.3 -> r1.4) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/external-projects.sgml.diff?r1=1.3&r2=1.4) ---(end of broadcast

[COMMITTERS] pgsql: Fix typo.

2004-12-02 Thread Bruce Momjian
Log Message: --- Fix typo. Modified Files: -- pgsql/doc/src/sgml: external-projects.sgml (r1.2 -> r1.3) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/external-projects.sgml.diff?r1=1.2&r2=1.3) ---(end of broadcast)-

[COMMITTERS] pgsql: Merge pgadmin paragraph.

2004-12-02 Thread Bruce Momjian
Log Message: --- Merge pgadmin paragraph. Modified Files: -- pgsql/doc/src/sgml: external-projects.sgml (r1.1 -> r1.2) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/external-projects.sgml.diff?r1=1.1&r2=1.2) ---(end

[COMMITTERS] pgsql: First version of external projects manual section.

2004-12-02 Thread Bruce Momjian
Log Message: --- First version of external projects manual section. Modified Files: -- pgsql/doc/src/sgml: filelist.sgml (r1.39 -> r1.40) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/filelist.sgml.diff?r1=1.39&r2=1.40) postgres.sgm

Re: [COMMITTERS] pgsql: Code review for recent libpq changes.

2004-12-02 Thread Tom Lane
Bruce Momjian <[EMAIL PROTECTED]> writes: > OK, fixed. Patch attached. Thanks. Sigh, I'm an idiot ... sorry about that ... regards, tom lane ---(end of broadcast)--- TIP 5: Have you checked our extensive FAQ?

[COMMITTERS] pgsql: Add: > * Fix priority ordering of read and write light-weight

2004-12-02 Thread Bruce Momjian
Log Message: --- Add: > * Fix priority ordering of read and write light-weight locks (Neil) Modified Files: -- pgsql/doc: TODO (r1.1417 -> r1.1418) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/TODO.diff?r1=1.1417&r2=1.1418) --

Re: [COMMITTERS] pgsql: Code review for recent libpq changes.

2004-12-02 Thread Bruce Momjian
OK, fixed. Patch attached. Thanks. --- Michael Fuhr wrote: > On Thu, Dec 02, 2004 at 11:20:24PM +, Tom Lane wrote: > > > Code review for recent libpq changes. Be more careful about error > > handling in SIGPIPE proce

[COMMITTERS] pgsql: Fix compile breakage from SIGPIPE fix for threading.

2004-12-02 Thread Bruce Momjian
Log Message: --- Fix compile breakage from SIGPIPE fix for threading. Modified Files: -- pgsql/src/interfaces/libpq: fe-secure.c (r1.59 -> r1.60) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/interfaces/libpq/fe-secure.c.diff?r1=1.59&r2=1.60) -

Re: [COMMITTERS] pgsql: Code review for recent libpq changes.

2004-12-02 Thread Michael Fuhr
On Thu, Dec 02, 2004 at 11:20:24PM +, Tom Lane wrote: > Code review for recent libpq changes. Be more careful about error > handling in SIGPIPE processing; avoid unnecessary pollution of application > link-symbol namespace; spell 'pointer to function' in the conventional > way. Build failure

Re: [COMMITTERS] pgsql: Fix for Unicode characters above 0x10000.

2004-12-02 Thread Tom Lane
Bruce Momjian <[EMAIL PROTECTED]> writes: > I don't know the answers to any of these questions. I don't even > understand the purpose of the patch. However, no one object to it nor > did they say anything when it went into the queue, so it was applied. I was waiting for Tatsuo to comment on it

[COMMITTERS] pgsql: Remove doc changes that were in process during previous commit.

2004-12-02 Thread Bruce Momjian
Log Message: --- Remove doc changes that were in process during previous commit. Modified Files: -- pgsql/doc/src/sgml: postgres.sgml (r1.66 -> r1.67) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/postgres.sgml.diff?r1=1.66&r2=1.67) --

[COMMITTERS] pgsql: Back out fix for Unicode characters above 0x10000

2004-12-02 Thread Bruce Momjian
Log Message: --- Back out fix for Unicode characters above 0x1 Modified Files: -- pgsql/doc/src/sgml: postgres.sgml (r1.65 -> r1.66) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/postgres.sgml.diff?r1=1.65&r2=1.66) pgsql/src/backend

Re: [COMMITTERS] pgsql: Fix for Unicode characters above 0x10000.

2004-12-02 Thread Bruce Momjian
Neil Conway wrote: > On Thu, 2004-12-02 at 19:48 -0500, Bruce Momjian wrote: > > Should it be backed out and saved for 8.1? > > That would be my preference, unless we can get some review from some > Unicode-clueful folks on it. OK, backing out. I just don't understand the Unicode stuff myself so

Re: [COMMITTERS] pgsql: Fix for Unicode characters above 0x10000.

2004-12-02 Thread Neil Conway
On Thu, 2004-12-02 at 19:48 -0500, Bruce Momjian wrote: > Should it be backed out and saved for 8.1? That would be my preference, unless we can get some review from some Unicode-clueful folks on it. -Neil ---(end of broadcast)--- TIP 5: Have you

Re: [COMMITTERS] pgsql: Fix for Unicode characters above 0x10000.

2004-12-02 Thread Bruce Momjian
Tom Lane wrote: > [EMAIL PROTECTED] (Bruce Momjian) writes: > > Fix for Unicode characters above 0x1. > > I really have to object to this going in on the day before RC1, as well. > (1) There is no way on God's green earth that this isn't a new feature. > (2) It is mucking with fairly central c

Re: [COMMITTERS] pgsql: Fix for Unicode characters above 0x10000.

2004-12-02 Thread Tom Lane
[EMAIL PROTECTED] (Bruce Momjian) writes: > Fix for Unicode characters above 0x1. I really have to object to this going in on the day before RC1, as well. (1) There is no way on God's green earth that this isn't a new feature. (2) It is mucking with fairly central code. (3) AFAIK it hasn't bee

Re: [COMMITTERS] pgsql: Code review for recent libpq changes.

2004-12-02 Thread Bruce Momjian
Nice. You were able to get the EPIPE checks in there. --- Tom Lane wrote: > Log Message: > --- > Code review for recent libpq changes. Be more careful about error > handling in SIGPIPE processing; avoid unnecessary

[COMMITTERS] pgsql: Code review for recent libpq changes.

2004-12-02 Thread Tom Lane
Log Message: --- Code review for recent libpq changes. Be more careful about error handling in SIGPIPE processing; avoid unnecessary pollution of application link-symbol namespace; spell 'pointer to function' in the conventional way. Modified Files: -- pgsql/src/interfaces

[COMMITTERS] pgsql: Add: < > o Fix problem with shared memory on the Win32

2004-12-02 Thread Bruce Momjian
Log Message: --- Add: < > o Fix problem with shared memory on the Win32 Terminal Server Modified Files: -- pgsql/doc: TODO (r1.1416 -> r1.1417) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/TODO.diff?r1=1.1416&r2=1.1417) ---

[COMMITTERS] pgsql: > I have installed your patch and adjusted the names of the

2004-12-02 Thread Bruce Momjian
Log Message: --- > I have installed your patch and adjusted the names of the standards > throughout to the spellings suggested by your book. Great. A follow-up patch for current CVS HEAD is attached, and available at http://troels.arvin.dk/db/pgsql/conformance/pgsql-sql-conformance- follo

[COMMITTERS] pgsql: > > 8.0beta3 has pg_autovacuum included, when I want to run this

2004-12-02 Thread Bruce Momjian
Log Message: --- > > 8.0beta3 has pg_autovacuum included, when I want to run this as a > > Windows service, it says you can use the -I and -R options. > > > > When I do that and I specify a password with '-P' > (uppercase) then in > > the registry it's saved as '-p' (lowercase) in the > ser

[COMMITTERS] pgsql: > I enclose a short patch to reduce the PGARCH_RESTART_INTERVAL

2004-12-02 Thread Bruce Momjian
Log Message: --- > I enclose a short patch to reduce the PGARCH_RESTART_INTERVAL from 60 > seconds to 10 seconds. The original number was plucked from thin air > some months ago, and I'd like to review that now based upon further > thought, observation and experience. > > This change has li

[COMMITTERS] pgsql: Fix for Unicode characters above 0x10000.

2004-12-02 Thread Bruce Momjian
Log Message: --- Fix for Unicode characters above 0x1. John Hansen Modified Files: -- pgsql/src/backend/utils/mb: wchar.c (r1.38 -> r1.39) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/mb/wchar.c.diff?r1=1.38&r2=1.39) pgsql/sr

[COMMITTERS] pgsql: On win32, there is currently no way to get the equivalent

2004-12-02 Thread Bruce Momjian
Log Message: --- On win32, there is currently no way to get the equivalent function of the "ps" argument list on Unix - meaning that there is no way to identify for example the stats processors or the bgwriter. This patch adds this functionality, in a bit of a crufty way. It creates a kern

Re: [COMMITTERS] pgsql: New Directory

2004-12-02 Thread Bruce Momjian
Tom Lane wrote: > Bruce Momjian <[EMAIL PROTECTED]> writes: > > Tom Lane wrote: > >> I hope this does not indicate that you are planning to commit that patch > >> on the day before RC1. > > > I am applying it. It was added to the queue yesterday or the day > > before. I don't consider it a featu

Re: [COMMITTERS] pgsql: New Directory

2004-12-02 Thread Bruce Momjian
Tom Lane wrote: > Bruce Momjian <[EMAIL PROTECTED]> writes: > > Tom Lane wrote: > >> I hope this does not indicate that you are planning to commit that patch > >> on the day before RC1. > > > I am applying it. It was added to the queue yesterday or the day > > before. I don't consider it a featu

Re: [COMMITTERS] pgsql: New Directory

2004-12-02 Thread Tom Lane
Bruce Momjian <[EMAIL PROTECTED]> writes: > Tom Lane wrote: >> I hope this does not indicate that you are planning to commit that patch >> on the day before RC1. > I am applying it. It was added to the queue yesterday or the day > before. I don't consider it a feature addition but rather an addi

[COMMITTERS] pgsql: Attached is a patch that adds the function

2004-12-02 Thread Bruce Momjian
Log Message: --- Attached is a patch that adds the function xml_encode_special_chars to the xml2 contrib module. It's against 8.0beta4. It's intended for commit. Markus Bertheau <[EMAIL PROTECTED]> Modified Files: -- pgsql/contrib/xml2: pgxml.sql.in (r1.2 -> r1.3)

[COMMITTERS] pgsql: Add Charset WIN1252 support.

2004-12-02 Thread Bruce Momjian
Log Message: --- Add Charset WIN1252 support. Roland Volkmann Modified Files: -- pgsql/src/backend/utils/mb: encnames.c (r1.20 -> r1.21) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/utils/mb/encnames.c.diff?r1=1.20&r2=1.21) pgsql/src/i

Re: [COMMITTERS] pgsql: New Directory

2004-12-02 Thread Bruce Momjian
Tom Lane wrote: > [EMAIL PROTECTED] (Bruce Momjian) writes: > > Directory > > /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_win1252 added > > to the repository > > I hope this does not indicate that you are planning to commit that patch > on the day before RC1. (1) We are *far*

Re: [COMMITTERS] pgsql: New Directory

2004-12-02 Thread Tom Lane
[EMAIL PROTECTED] (Bruce Momjian) writes: > Directory > /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_win1252 added > to the repository I hope this does not indicate that you are planning to commit that patch on the day before RC1. (1) We are *far* past feature freeze. (2) The o

[COMMITTERS] pgsql: New Directory

2004-12-02 Thread Bruce Momjian
Update of /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_win1252 In directory svr1.postgresql.org:/var/tmp/cvs-serv45941/utf8_and_win1252 Log Message: Directory /cvsroot/pgsql/src/backend/utils/mb/conversion_procs/utf8_and_win1252 added to the repository -

[COMMITTERS] pgsql: Allow libedit to keep its headers in /usr/include/readline/ ...

2004-12-02 Thread Tom Lane
Log Message: --- Allow libedit to keep its headers in /usr/include/readline/ ... not a very good practice IMHO, but apparently some people think so. Modified Files: -- pgsql: configure.in (r1.388 -> r1.389) (http://developer.postgresql.org/cvsweb.cgi/pgsql/

[COMMITTERS] press - pr: Finished the translation.

2004-12-02 Thread User Am
Log Message: --- Finished the translation. Modified Files: -- pr/releases/8.0/ro: press_page (r1.3 -> r1.4) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/press/pr/releases/8.0/ro/press_page.diff?r1=1.3&r2=1.4) ---(end of broadcast)--

[COMMITTERS] pgsql: Add documention on ARRAY() function.

2004-12-02 Thread Bruce Momjian
Log Message: --- Add documention on ARRAY() function. David Fetter Modified Files: -- pgsql/doc/src/sgml: func.sgml (r1.227 -> r1.228) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/func.sgml.diff?r1=1.227&r2=1.228) ---

[COMMITTERS] pgsql: Add mention of using --disable-rpath with regression test.

2004-12-02 Thread Bruce Momjian
Log Message: --- Add mention of using --disable-rpath with regression test. Modified Files: -- pgsql/doc/src/sgml: regress.sgml (r1.42 -> r1.43) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/regress.sgml.diff?r1=1.42&r2=1.43) -

[COMMITTERS] pgsql: Prevent pg_autovacuum -D from needing an argument.

2004-12-02 Thread Bruce Momjian
Log Message: --- Prevent pg_autovacuum -D from needing an argument. Kenneth Marshall Modified Files: -- pgsql/contrib/pg_autovacuum: pg_autovacuum.c (r1.25 -> r1.26) (http://developer.postgresql.org/cvsweb.cgi/pgsql/contrib/pg_autovacuum/pg_autovacuum.c.di

[COMMITTERS] pgsql: Hack to work around broken linker on older NetBSD/OpenBSD/Irix

2004-12-02 Thread Tom Lane
Log Message: --- Hack to work around broken linker on older NetBSD/OpenBSD/Irix assumed that readline must depend on libcurses, but it seems more recent ones use libtermcap instead. Allow that case. Modified Files: -- pgsql/config: programs.m4 (r1.17 -> r1.18)

[COMMITTERS] pginstaller - pginst: Fix invalid mixing of unicode and ANSI string

2004-12-02 Thread User Mha
Log Message: --- Fix invalid mixing of unicode and ANSI string references in several error messages. Modified Files: -- pginst/ca: pginstca.c (r1.67 -> r1.68) (http://cvs.pgfoundry.org/cgi-bin/cvsweb.cgi/pginstaller/pginst/ca/pginstca.c.diff?r1=1.67&r2=1.6

[COMMITTERS] pginstaller - pginst: Make sure all malloc() calls have return values

2004-12-02 Thread User Mha
Log Message: --- Make sure all malloc() calls have return values checked. Fix incorrect size in ZeroMemory call causing crashes with really short names Properly close database handle Modified Files: -- pginst/ca: locale.c (r1.3 -> r1.4) (http://cvs.pgfoun

[COMMITTERS] pgsql: Change Win32 dlerror message to: return "dynamic loading

2004-12-02 Thread Bruce Momjian
Log Message: --- Change Win32 dlerror message to: return "dynamic loading error"; Modified Files: -- pgsql/src/backend/port/dynloader: win32.c (r1.4 -> r1.5) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/port/dynloader/win32.c.diff?

[COMMITTERS] pgsql: Add for Win32: > o Improve dlerror() reporting string

2004-12-02 Thread Bruce Momjian
Log Message: --- Add for Win32: > o Improve dlerror() reporting string Modified Files: -- pgsql/doc: TODO (r1.1415 -> r1.1416) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/TODO.diff?r1=1.1415&r2=1.1416) ---(end of br

[COMMITTERS] pgsql: Add: > * Allow a warm standby system to also allow read-only

2004-12-02 Thread Bruce Momjian
Log Message: --- Add: > * Allow a warm standby system to also allow read-only queries > > This is useful for checking PITR recovery. > Modified Files: -- pgsql/doc: TODO (r1.1414 -> r1.1415) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/TODO.dif

[COMMITTERS] pgsql: Disallow the combination VACUUM FULL FREEZE for safety's sake,

2004-12-02 Thread Tom Lane
Log Message: --- Disallow the combination VACUUM FULL FREEZE for safety's sake, for the reasons I outlined in pghackers a few days ago. Also, undo someone's overly optimistic decision to reduce tuple state checks from if (...) elog() to Asserts. If I trusted this code more, I might think

[COMMITTERS] pgsql: Add: > * Fix psql's display of schema information (Neil)

2004-12-02 Thread Bruce Momjian
Log Message: --- Add: > * Fix psql's display of schema information (Neil) Modified Files: -- pgsql/doc: TODO (r1.1413 -> r1.1414) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/TODO.diff?r1=1.1413&r2=1.1414) ---(end of broad

[COMMITTERS] pgsql: Don't bother adding to cflags/cppflags, just set them because

2004-12-02 Thread Bruce Momjian
Log Message: --- Don't bother adding to cflags/cppflags, just set them because configure handles that, and make solaris debug use no optimization. Modified Files: -- pgsql/src/template: aix (r1.16 -> r1.17) (http://developer.postgresql.org/cvsweb.cgi/pgsql/

[COMMITTERS] pgsql: Wording improvement.

2004-12-02 Thread Bruce Momjian
Log Message: --- Wording improvement. Modified Files: -- pgsql/doc/src/sgml: func.sgml (r1.226 -> r1.227) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/func.sgml.diff?r1=1.226&r2=1.227) ---(end of broadcast)

[COMMITTERS] pgsql: Document that btrim()'s second parameter is optional, and

2004-12-02 Thread Bruce Momjian
Log Message: --- Document that btrim()'s second parameter is optional, and defaults to spaces. Modified Files: -- pgsql/doc/src/sgml: func.sgml (r1.225 -> r1.226) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/src/sgml/func.sgml.diff?r1=1.225&r2=1.22

[COMMITTERS] osxpgpkg - osxpkg: Imported Sources

2004-12-02 Thread User Taipan
Update of /cvsroot/osxpgpkg/osxpkg In directory pgfoundry.org:/tmp/cvs-serv92106 Log Message: OSX PostgreSQL package Status: Vendor Tag: taipan Release Tags: start N osxpkg/postgres/Library/StartupItems/PostgreSQL/PostgreSQL N osxpkg/postgres/Library/StartupItems/PostgreSQ

[COMMITTERS] pgsql: Update Brazilian FAQ.

2004-12-02 Thread Bruce Momjian
Log Message: --- Update Brazilian FAQ. Euler Taveira de Oliveira Modified Files: -- pgsql/doc: FAQ_brazilian (r1.3 -> r1.4) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/FAQ_brazilian.diff?r1=1.3&r2=1.4) pgsql/doc/src/FAQ: FAQ_brazilian

[COMMITTERS] pgsql: Rework libpq threaded SIGPIPE handling to avoid interference with

2004-12-02 Thread Bruce Momjian
Log Message: --- Rework libpq threaded SIGPIPE handling to avoid interference with calling applications. This is done by blocking sigpipe in the libpq thread and using sigpending/sigwait to possibily discard any sigpipe we generated. Modified Files: -- pgsql: confi