- 05 Mar, 2002 11 commits
-
-
Tom Lane authored
three-or-more-way UNIONs, as per example from Josh Berkus. Cause is a fragile assumption that one tlist's entries will exactly match another. Restructure code to make that assumption a little less fragile.
-
Dave Cramer authored
-
Dave Cramer authored
The errors_zh_TW.properties must be translated using native2ascii or it will raise an exception. Please replace the old file.
-
Bruce Momjian authored
> o allow replication over unreliable or non-persistent links
-
Dave Cramer authored
An attached patch corrects problem of this bug and fractional second. The handling of time zone was as follows: (a) with time zone using SimpleDateFormat("yyyy-MM-dd HH:mm:ss z") (b) without time zone using SimpleDateFormat("yyyy-MM-dd HH:mm:ss") About problem of fractional second, Fractional second was changed from milli-second to nano-second
-
Dave Cramer authored
-
Bruce Momjian authored
Greg Sabino Mullane
-
Dave Cramer authored
-
Bruce Momjian authored
Elliot Lee wrote: > This patch to the python bindings adds C versions of the often-used query > args quoting routines, as well as support for quoting lists e.g. > dbc.execute("SELECT * FROM foo WHERE blah IN %s", ([1,2,3],))
-
Bruce Momjian authored
query args quoting routines, as well as support for quoting lists e.g. dbc.execute("SELECT * FROM foo WHERE blah IN %s", ([1,2,3],)) Elliot Lee
-
Bruce Momjian authored
Greg Sabino Mullane
-
- 04 Mar, 2002 12 commits
-
-
Bruce Momjian authored
Everyone using libpq and bytea is probably having to invent this wheel.. Patrick Welche
-
Bruce Momjian authored
-
Tom Lane authored
occur on Solaris 7 in 64-bit mode, for one.)
-
Tom Lane authored
around 64-bit vsnprintf bug.
-
Tom Lane authored
-
Bruce Momjian authored
< * Add GUC parameter for eurodates > * Add GUC parameter for DATESTYLE
-
Bruce Momjian authored
> * Add GUC parameter for eurodates
-
Tom Lane authored
type named 'dt' back in Postgres 4.2, and the regression test wasn't updated when it was removed. Per report from Patricia Holben of Great Bridge.
-
Tom Lane authored
double slashes in generated filenames. This is not strictly necessary on standard Unixen, but I'm being a neatnik...
-
Tatsuo Ishii authored
timestamp/timestamptz combo. Now extract/date_part returns seconds*1000 or 1000000 + fraction part as the manual stats. regression test are also fixed. See the thread in pgsql-hackers: Subject: Re: [HACKERS] timestamp_part() bug? Date: Sat, 02 Mar 2002 11:29:53 +0900
-
Tom Lane authored
-
Tom Lane authored
when to send what to which, prevent recursion by introducing new COMMERROR elog level for client-communication problems, get rid of direct writes to stderr in backend/libpq files, prevent non-error elogs from going to client during the authentication cycle.
-
- 03 Mar, 2002 5 commits
-
-
Bruce Momjian authored
-
Tom Lane authored
speed up repetitive failed searches; per pghackers discussion in late January. inval.c logic substantially simplified, since we can now treat inserts and deletes alike as far as inval events are concerned. Some repair work needed in heap_create_with_catalog, which turns out to have been doing CommandCounterIncrement at a point where the new relation has non-self-consistent catalog entries. With the new inval code, that resulted in assert failures during a relcache entry rebuild.
-
Bruce Momjian authored
-
Bruce Momjian authored
-
Tom Lane authored
-
- 02 Mar, 2002 5 commits
-
-
Tom Lane authored
-
Bruce Momjian authored
now just below FATAL in server_min_messages. Added more text to highlight ordering difference between it and client_min_messages. --------------------------------------------------------------------------- REALLYFATAL => PANIC STOP => PANIC New INFO level the prints to client by default New LOG level the prints to server log by default Cause VACUUM information to print only to the client NOTICE => INFO where purely information messages are sent DEBUG => LOG for purely server status messages DEBUG removed, kept as backward compatible DEBUG5, DEBUG4, DEBUG3, DEBUG2, DEBUG1 added DebugLvl removed in favor of new DEBUG[1-5] symbols New server_min_messages GUC parameter with values: DEBUG[5-1], INFO, NOTICE, ERROR, LOG, FATAL, PANIC New client_min_messages GUC parameter with values: DEBUG[5-1], LOG, INFO, NOTICE, ERROR, FATAL, PANIC Server startup now logged with LOG instead of DEBUG Remove debug_level GUC parameter elog() numbers now start at 10 Add test to print error message if older elog() values are passed to elog() Bootstrap mode now has a -d that requires an argument, like postmaster
-
Tom Lane authored
profiling timer setting across fork(). The correct way to build a profilable backend on Linux is now gmake PROFILE="-pg -DLINUX_PROFILE"
-
Tom Lane authored
postmaster won't accept the request anyway. (If your kernel can't be trusted, SSL will not help you.)
-
Tom Lane authored
bounds of 1, not the lower bound subscripts of the original slice. Per bug report from Andre Holzner, 1-Feb-02.
-
- 01 Mar, 2002 7 commits
-
-
Peter Eisentraut authored
variables. New commands ALTER DATABASE ... SET and ALTER USER ... SET.
-
Peter Eisentraut authored
return NULL.
-
Tom Lane authored
mergeclause is which when extracting selectivity info.
-
Bruce Momjian authored
-
Bruce Momjian authored
manual page; pointed out by IRC user.
-
Hiroshi Inoue authored
-
Tom Lane authored
in RestrictInfo nodes, instead of recomputing on every use.
-