Re: [COMMITTERS] pgsql: Add COST and ROWS options to CREATE/ALTER FUNCTION, plus

2007-01-22 Thread Jim C. Nasby
Any plans to extend psql's \df+ to get that information? On Sun, Jan 21, 2007 at 09:35:23PM -0400, Tom Lane wrote: > Log Message: > --- > Add COST and ROWS options to CREATE/ALTER FUNCTION, plus underlying pg_proc > columns procost and prorows, to allow simple user adjustment of the estima

[COMMITTERS] pgsql: When system() fails in Win32, report it as an exception, print

2007-01-22 Thread Bruce Momjian
Log Message: --- When system() fails in Win32, report it as an exception, print the exception value in hex, and give a URL where the value can be looked-up. Modified Files: -- pgsql/src/backend/postmaster: postmaster.c (r1.508 -> r1.509) (http://developer.p

[COMMITTERS] pgsql: Uppercase hex value.

2007-01-22 Thread Bruce Momjian
Log Message: --- Uppercase hex value. Modified Files: -- pgsql/src/include/port: win32.h (r1.66 -> r1.67) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/include/port/win32.h.diff?r1=1.66&r2=1.67) ---(end of broadcast)

[COMMITTERS] pgsql: Use errhint() for WIN32 SIGTERM message, where possible.

2007-01-22 Thread Bruce Momjian
Log Message: --- Use errhint() for WIN32 SIGTERM message, where possible. Modified Files: -- pgsql/src/backend/postmaster: postmaster.c (r1.509 -> r1.510) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/backend/postmaster/postmaster.c.diff?r1=1.509&r2

[COMMITTERS] pgsql: Put back planner's ability to cache the results of

2007-01-22 Thread Tom Lane
Log Message: --- Put back planner's ability to cache the results of mergejoinscansel(), which I had removed in the first cut of the EquivalenceClass rewrite to simplify that patch a little. But it's still important --- in a four-way join problem mergejoinscansel() was eating about 40% of t

[COMMITTERS] pgsql: Update my email address in FAQ.

2007-01-22 Thread Bruce Momjian
Log Message: --- Update my email address in FAQ. Modified Files: -- pgsql/doc: FAQ_MINGW (r1.6 -> r1.7) (http://developer.postgresql.org/cvsweb.cgi/pgsql/doc/FAQ_MINGW.diff?r1=1.6&r2=1.7) ---(end of broadcast)---

[COMMITTERS] pgsql: Print meaningfull error text for abonormal process exit on Win32,

2007-01-22 Thread Bruce Momjian
Log Message: --- Print meaningfull error text for abonormal process exit on Win32, rather than hex codes, using FormatMessage(). Modified Files: -- pgsql/src/backend/postmaster: postmaster.c (r1.510 -> r1.511) (http://developer.postgresql.org/cvsweb.cgi/pgs

[COMMITTERS] pgsql: Back out use of FormatMessage(), does error values, not exception

2007-01-22 Thread Bruce Momjian
Log Message: --- Back out use of FormatMessage(), does error values, not exception values. Point to /include/ntstatus.h for an exception list, rather than a URL. Modified Files: -- pgsql/src/backend/postmaster: postmaster.c (r1.511 -> r1.512) (http://devel

[COMMITTERS] pgsql: Remove newline from error message because URL is gone.

2007-01-22 Thread Bruce Momjian
Log Message: --- Remove newline from error message because URL is gone. Modified Files: -- pgsql/src/port: exec.c (r1.47 -> r1.48) (http://developer.postgresql.org/cvsweb.cgi/pgsql/src/port/exec.c.diff?r1=1.47&r2=1.48) ---(end of br

[COMMITTERS] pgsql: Add CREATE/ALTER/DROP OPERATOR FAMILY commands, also COMMENT ON

2007-01-22 Thread Tom Lane
Log Message: --- Add CREATE/ALTER/DROP OPERATOR FAMILY commands, also COMMENT ON OPERATOR FAMILY; and add FAMILY option to CREATE OPERATOR CLASS to allow adding a class to a pre-existing family. Per previous discussion. Man, what a tedious lot of cutting and pasting ... Modified Files: -