]> granicus.if.org Git - postgresql/log
postgresql
22 years agoFix indenting of log_min_error_statement.
Bruce Momjian [Thu, 9 Jan 2003 05:19:18 +0000 (05:19 +0000)]
Fix indenting of log_min_error_statement.

22 years agoRepair inconsistent rounding behavior for timestamp, time, interval,
Tom Lane [Thu, 9 Jan 2003 01:07:18 +0000 (01:07 +0000)]
Repair inconsistent rounding behavior for timestamp, time, interval,
per gripe from Csaba Nagy.  There is still potential for platform-specific
behavior for values that are exactly halfway between integers, but at
least we now get the expected answer for all other cases.

22 years agoRemove 'const' from secure_write, to prevent compiler warning.
Bruce Momjian [Wed, 8 Jan 2003 23:34:37 +0000 (23:34 +0000)]
Remove 'const' from secure_write, to prevent compiler warning.

22 years agoThe second was that renegotiation was just plain broken. I can't
Bruce Momjian [Wed, 8 Jan 2003 23:18:35 +0000 (23:18 +0000)]
The second was that renegotiation was just plain broken.  I can't
believe I didn't notice this before -- once 64k was sent to/from the
server the client would crash.  Basicly, in 7.3 the server SSL code set
the initial state to "about to renegotiate" without actually starting
the renegotiation.  In addition, the server and client didn't properly
handle the SSL_ERROR_WANT_(READ|WRITE) error.  This is fixed in the
second patch.

Nathan Mueller

22 years agoI was playing around with 7.3.1 and found some more SSL problems. The
Bruce Momjian [Wed, 8 Jan 2003 22:57:05 +0000 (22:57 +0000)]
I was playing around with 7.3.1 and found some more SSL problems.  The
first, that I missed when checking over 7.3.1, was that the client
method was switched to SSLv23 along with the server.  The SSLv23 client
method does SSLv2 by default, but can also understand SSLv3.  In our
situation the SSLv2 backwords compatibility is really only needed on the
server.  This is the first patch.

The last thing is that I found a way for the server to understand SSLv2
HELLO messages (sent by pre-7.3 clients) but then get them to talk
SSLv3.  This is the last one.

Nathan Mueller

22 years agoFix dumping of DEFERRABLE/INITIALLY DEFERRED:
Bruce Momjian [Wed, 8 Jan 2003 22:54:36 +0000 (22:54 +0000)]
Fix dumping of DEFERRABLE/INITIALLY DEFERRED:

> The big problem is that while pg_dump's dump_trigger() looks at
> tginitdeferred and dumps accordingly, pg_get_constraintdef doesn't look
> at tginitdeferred, and therefore doesn't record the requirement as part
> of ALTER TABLE ADD CONSTRAINT.

pg_get_constraintdef should probably be looking at condeferrable and
condeferred in the pg_constraint row it's looking at.  Maybe something
like the attached.

(Added, output only non-default values.)

Stephan Szabo

22 years agoRepair bug noticed by Deepak Bhole: a shell type should have a dependency
Tom Lane [Wed, 8 Jan 2003 21:40:49 +0000 (21:40 +0000)]
Repair bug noticed by Deepak Bhole: a shell type should have a dependency
on its namespace, so that it will go away if the schema is dropped.

22 years agoFix pgpass to work with PQconnectDB().
Bruce Momjian [Wed, 8 Jan 2003 21:33:53 +0000 (21:33 +0000)]
Fix pgpass to work with PQconnectDB().

Backpatch to 7.3.X.

Report from ljb.

22 years agoFix for bug #866. 7.3 contains new logic for avoiding redundant calls to
Tom Lane [Wed, 8 Jan 2003 19:41:57 +0000 (19:41 +0000)]
Fix for bug #866.  7.3 contains new logic for avoiding redundant calls to
the index AM when we know we are fetching a unique row.  However, this
logic did not consider the possibility that it would be asked to fetch
backwards.  Also fix mark/restore to work correctly in this scenario.

22 years agoBackpatch extra slash removal into 7.3.X. HEAD already has it.
Bruce Momjian [Tue, 7 Jan 2003 22:54:03 +0000 (22:54 +0000)]
Backpatch extra slash removal into 7.3.X. HEAD already has it.

22 years agoFix doc chmod .pgpass line in 7.3.X. Head already fixed.
Bruce Momjian [Tue, 7 Jan 2003 22:52:50 +0000 (22:52 +0000)]
Fix doc chmod .pgpass line in 7.3.X.  Head already fixed.

22 years agoUpgrade to my2pg 1.9
Bruce Momjian [Tue, 7 Jan 2003 22:18:49 +0000 (22:18 +0000)]
Upgrade to my2pg 1.9

22 years agoUpgrade to even newer ora2pg 2.0.
Bruce Momjian [Tue, 7 Jan 2003 22:17:23 +0000 (22:17 +0000)]
Upgrade to even newer ora2pg 2.0.

22 years agoUpgrade to ora2pg 1.10. Backpatch to 7.3.X.
Bruce Momjian [Tue, 7 Jan 2003 22:16:19 +0000 (22:16 +0000)]
Upgrade to ora2pg 1.10.  Backpatch to 7.3.X.

22 years agoFix inherited UPDATE for cases where child column numbering doesn't
Tom Lane [Sun, 5 Jan 2003 00:56:56 +0000 (00:56 +0000)]
Fix inherited UPDATE for cases where child column numbering doesn't
match parent table.  This used to work, but was broken in 7.3 by
rearrangement of code that handles targetlist sorting.  Add a regression
test to catch future breakage.

22 years agoAdd missing include --- seems include file references are different in
Tom Lane [Sun, 5 Jan 2003 00:49:59 +0000 (00:49 +0000)]
Add missing include --- seems include file references are different in
CVS tip than in this branch.

22 years agoTranslation updates
Peter Eisentraut [Sat, 4 Jan 2003 10:26:28 +0000 (10:26 +0000)]
Translation updates

22 years agoAdd casts between oid and lo in contrib.
Hiroshi Inoue [Fri, 3 Jan 2003 15:43:33 +0000 (15:43 +0000)]
Add casts between oid and lo in contrib.

22 years agoFix BSD/OS thread file locking bug in new fseeko code.
Bruce Momjian [Thu, 2 Jan 2003 06:01:02 +0000 (06:01 +0000)]
Fix BSD/OS thread file locking bug in new fseeko code.

Backpatch to 7.3.X.

22 years agofastpath code neglected to check whether user has privileges to call the
Tom Lane [Wed, 1 Jan 2003 21:57:18 +0000 (21:57 +0000)]
fastpath code neglected to check whether user has privileges to call the
target function.  Also, move SetQuerySnapshot() call to avoid assert
failure when a fastpath call is attempted in an aborted transaction.

22 years agoAwhile back I wrote that freebsd.h was probably broken in the places where
Tom Lane [Wed, 1 Jan 2003 20:35:54 +0000 (20:35 +0000)]
Awhile back I wrote that freebsd.h was probably broken in the places where
it diverged from netbsd.h and openbsd.h.  This has now been confirmed.
Accordingly, make all three exactly alike.

22 years agoPoint does not return a center of lseg.
Tom Lane [Mon, 30 Dec 2002 02:18:39 +0000 (02:18 +0000)]
Point does not return a center of lseg.

Kenji Sugita

22 years agoAdjust hash table sizing algorithm to avoid integer overflow in
Tom Lane [Sun, 29 Dec 2002 22:29:03 +0000 (22:29 +0000)]
Adjust hash table sizing algorithm to avoid integer overflow in
ExecHashJoinGetBatch().  Fixes core dump on large hash joins, as in
example from Rae Stiening.

22 years agoDeliver better error message when a relation name is used in an expression.
Tom Lane [Fri, 27 Dec 2002 20:06:28 +0000 (20:06 +0000)]
Deliver better error message when a relation name is used in an expression.
Per report from Ian Barwick.

22 years agoRemove overenthusiastic free'ing of comment dependencies; could lead to
Tom Lane [Fri, 27 Dec 2002 17:10:55 +0000 (17:10 +0000)]
Remove overenthusiastic free'ing of comment dependencies; could lead to
core dump in pg_dump when dumping views having comments.  See bug #855.

22 years agoSmall fix in documentation and some examples of usage. Please, apply to
Bruce Momjian [Fri, 27 Dec 2002 14:10:49 +0000 (14:10 +0000)]
Small fix in documentation and some examples of usage. Please, apply to
7.3 and current CVS

Oleg Bartunov

22 years agoTrivial patch to increase max_fsm_pages as per earlier discussion.
Bruce Momjian [Fri, 27 Dec 2002 14:07:14 +0000 (14:07 +0000)]
Trivial patch to increase max_fsm_pages as per earlier discussion.

Philip Warner

22 years agoUpdate SSL error message for improper permissions. Backpatch to 7.3.X.
Bruce Momjian [Mon, 23 Dec 2002 22:19:26 +0000 (22:19 +0000)]
Update SSL error message for improper permissions.  Backpatch to 7.3.X.

22 years agoFix possible buffer overrun in \d command: substr(..., 128) produces REL7_3_1
Tom Lane [Sat, 21 Dec 2002 01:07:21 +0000 (01:07 +0000)]
Fix possible buffer overrun in \d command: substr(..., 128) produces
a result of at most 128 chars, but that could be more than 128 bytes.
Also ensure we don't try to pfree uninitialized pointers during error
cleanup.

22 years agoUpdate 7.3.1 to give proper attribution to pg_dump item.
Bruce Momjian [Fri, 20 Dec 2002 00:24:29 +0000 (00:24 +0000)]
Update 7.3.1 to give proper attribution to pg_dump item.

22 years agoFix release notes and installation instructions for 7.3.1 release.
Peter Eisentraut [Wed, 18 Dec 2002 23:38:08 +0000 (23:38 +0000)]
Fix release notes and installation instructions for 7.3.1 release.

22 years agoUpdate Russian FAQ. Update all FAQ's for 7.3.X branch.
Bruce Momjian [Wed, 18 Dec 2002 20:39:31 +0000 (20:39 +0000)]
Update Russian FAQ.  Update all FAQ's for 7.3.X branch.

22 years agoUpdate RELEASE checklist.
Bruce Momjian [Wed, 18 Dec 2002 20:07:43 +0000 (20:07 +0000)]
Update RELEASE checklist.

22 years agoUpdate INSTALL file for 7.3.1.
Bruce Momjian [Wed, 18 Dec 2002 20:07:02 +0000 (20:07 +0000)]
Update INSTALL file for 7.3.1.

22 years agoFrom the SSL_CTX_new man page:
PostgreSQL Daemon [Wed, 18 Dec 2002 13:20:03 +0000 (13:20 +0000)]
From the SSL_CTX_new man page:

"SSLv23_method(void), SSLv23_server_method(void), SSLv23_client_method(void)

 A TLS/SSL connection established with these methods will understand the SSLv2,
 SSLv3, and TLSv1 protocol. A client will send out SSLv2 client hello messages
 and will indicate that it also understands SSLv3 and TLSv1. A server will
 understand SSLv2, SSLv3, and TLSv1 client hello messages. This is the best
 choice when compatibility is a concern."

This will maintain backwards compatibility for those us that don't use
TLS connections ...

22 years agoUpdate FAQ for 7.3.1.
Bruce Momjian [Wed, 18 Dec 2002 04:41:06 +0000 (04:41 +0000)]
Update FAQ for 7.3.1.

22 years agoStamp 7.3.1.
Bruce Momjian [Wed, 18 Dec 2002 02:07:30 +0000 (02:07 +0000)]
Stamp 7.3.1.

22 years agoFix ALTER TABLE ADD COLUMN to disallow the same column types that are
Tom Lane [Mon, 16 Dec 2002 18:39:57 +0000 (18:39 +0000)]
Fix ALTER TABLE ADD COLUMN to disallow the same column types that are
disallowed by CREATE TABLE (eg, pseudo-types); also disallow these types
from being introduced by the range-function syntax.  While at it, allow
CREATE TABLE to create zero-column tables, per recent pghackers discussion.
I am back-patching this into 7.3 since failure to disallow pseudo-types
is arguably a security hole.

22 years agoThe actual segfault was caused by a double pfree(), but ISTM that
Bruce Momjian [Sat, 14 Dec 2002 18:49:43 +0000 (18:49 +0000)]
The actual segfault was caused by a double pfree(), but ISTM that
failing to find pg_hba.conf should be a fatal error anyway, so I
increased the priority of the elog() from LOG to FATAL and refactored
the code a little bit.

Neil Conway

22 years agoOk, I think I've gotten this figured out now. I saw this comment in
Bruce Momjian [Sat, 14 Dec 2002 18:39:39 +0000 (18:39 +0000)]
Ok, I think I've gotten this figured out now.  I saw this comment in
pqcomm.c, switched the ERROR logs to COMMERROR logs and it all works.
I've attached a patch to be-secure.c that fixes all my problems.

Nathan Mueller

22 years agoBackpatch SSL fixes into 7.3.1.
Bruce Momjian [Fri, 13 Dec 2002 22:20:22 +0000 (22:20 +0000)]
Backpatch SSL fixes into 7.3.1.

22 years agoIncrement libpq major number for 7.3.1 and minor for 7.4.
Bruce Momjian [Fri, 13 Dec 2002 22:18:22 +0000 (22:18 +0000)]
Increment libpq major number for 7.3.1 and minor for 7.4.

22 years agoThis patch fixes minor bugs in dictionary generator in contrib/tsearch
Bruce Momjian [Fri, 13 Dec 2002 05:50:41 +0000 (05:50 +0000)]
This patch fixes minor bugs in dictionary generator in contrib/tsearch
(contrib/tsearch/makedict/makedict.pl)

[ Backpatched to 7.3.]

Teodor Sigaev

22 years agoGuard against overrunning CTZName buffer when TZ is bogus.
Tom Lane [Thu, 12 Dec 2002 19:17:04 +0000 (19:17 +0000)]
Guard against overrunning CTZName buffer when TZ is bogus.

22 years agoBack-patch fix to prevent core dump in EXPLAIN if optimizer has
Tom Lane [Thu, 12 Dec 2002 16:16:58 +0000 (16:16 +0000)]
Back-patch fix to prevent core dump in EXPLAIN if optimizer has
simplified function call to a constant.  (7.3 won't actually execute
such a plan anyway, but core dump is bad regardless.)

22 years agoMark SCO Openserver 5.0.4. supported by 7.3.1 as per chat report from user.
Bruce Momjian [Wed, 11 Dec 2002 22:27:34 +0000 (22:27 +0000)]
Mark SCO Openserver 5.0.4. supported by 7.3.1 as per chat report from user.
template/sco updated.

22 years agoFix line count error reporting in config files, like pg_hba.conf, per
Bruce Momjian [Wed, 11 Dec 2002 22:17:31 +0000 (22:17 +0000)]
Fix line count error reporting in config files, like pg_hba.conf, per
report from Oliver Elphick.

Backpatch to 7.3.

22 years agoBump version for 7.3 and 7.4.
Bruce Momjian [Wed, 11 Dec 2002 04:08:05 +0000 (04:08 +0000)]
Bump version for 7.3 and 7.4.

22 years agoTranslation updates
Peter Eisentraut [Tue, 10 Dec 2002 20:00:27 +0000 (20:00 +0000)]
Translation updates

22 years agoThis patch updates doc/src/sgml/runtime.sgml to refer to "MacOS X", not
Bruce Momjian [Mon, 9 Dec 2002 21:03:42 +0000 (21:03 +0000)]
This patch updates doc/src/sgml/runtime.sgml to refer to "MacOS X", not
"OS/X".

Neil Conway

22 years agoFix Latin1/Unicode conversion by selecting the right table.
Peter Eisentraut [Mon, 9 Dec 2002 19:42:31 +0000 (19:42 +0000)]
Fix Latin1/Unicode conversion by selecting the right table.

22 years agoAs far as I figured from the source code this function only deals with
Bruce Momjian [Mon, 9 Dec 2002 17:45:17 +0000 (17:45 +0000)]
As far as I figured from the source code this function only deals with
cleaning up locale names and nothing else. Since all the locale names
are in plain  ASCII I think it will be safe to use ASCII-only lower-case
conversion.

Nicolai Tufar

22 years agoExplain's code for showing quals of SubqueryScan nodes has been broken
Tom Lane [Fri, 6 Dec 2002 19:28:13 +0000 (19:28 +0000)]
Explain's code for showing quals of SubqueryScan nodes has been broken
all along; not noticed till now.  It's a scan not an upper qual ...

22 years agoThank you very much, you catch it :). This bug had a long life, because it
Bruce Momjian [Fri, 6 Dec 2002 05:15:32 +0000 (05:15 +0000)]
Thank you very much, you catch it :). This bug had a long life, because it
exists if and only if locale of postmaster
was a different from C (or ru_RU.KOI8-R).

Please, apply patch for current CVS & 7.3.1

Magnus Naeslund(f) wrote:
> Ok, I nailed the bug, but i'm not sure what the correct fix is.
> Attached tsearch_morph.diff that remedies this problem by avoiding it.
> Also there's a debug aid patch if someone would like to know how i
> finally found it out :)
>
> There problem in the lemmatize() function is that GETDICT(...) returned
> a value not handled (BYLOCALE).
> The value (-1) and later used as an index into the dicts[] array.
> After that everything went berserk stack went crazy somehow so trapping
> the fault sent me to the wrong place, and every time i read the value it
> was positive ;)
>
> So now i just return the initial word passed to the lemmatize function,
> because i don't know what to do with it.

Magnus Naeslund

22 years agolocalbuf.c must be able to do blind writes.
Tom Lane [Thu, 5 Dec 2002 22:48:10 +0000 (22:48 +0000)]
localbuf.c must be able to do blind writes.

22 years agoAvoid pulling up sublinks from a subselect's targetlist. Works around
Tom Lane [Thu, 5 Dec 2002 21:46:55 +0000 (21:46 +0000)]
Avoid pulling up sublinks from a subselect's targetlist.  Works around
problems that occur if sublink is referenced via a join alias variable.
Perhaps this can be improved later, but a simple and safe fix is needed
for 7.3.1.

22 years agoIt looks like the problem was introduced when the "SET autocommit" and
Bruce Momjian [Thu, 5 Dec 2002 21:04:14 +0000 (21:04 +0000)]
It looks like the problem was introduced when the "SET autocommit" and
"SET search_path"  commands were added to the beginning of the script.

The attatched patch should fix the problem. It probably should be
applied  against the 7.3 and 7.4 branches.

Steven Singer

22 years agoAllow 'password' encryption even when pg_shadow has MD5 passwords, per
Bruce Momjian [Thu, 5 Dec 2002 18:40:08 +0000 (18:40 +0000)]
Allow 'password' encryption even when pg_shadow has MD5 passwords, per
report from Terry Yapt and Hiroshi.

Backpatch to 7.3.

22 years agochanged sort of column names to sort by attnum, not attname
Dave Cramer [Thu, 5 Dec 2002 01:09:58 +0000 (01:09 +0000)]
changed sort of column names to sort by attnum, not attname

22 years agoRepair oversight in recent change of dependency extraction code: when
Tom Lane [Wed, 4 Dec 2002 20:00:19 +0000 (20:00 +0000)]
Repair oversight in recent change of dependency extraction code: when
recursing to handle a join alias var, the context had better be set to
be appropriate to the join var's query level.  Per report from Hristo Neshev.

22 years agoFix off-by-one bug in usage check.
Tom Lane [Tue, 3 Dec 2002 07:12:23 +0000 (07:12 +0000)]
Fix off-by-one bug in usage check.

22 years agoRepair core dump when trying to delete an entry from an already-NULL
Tom Lane [Mon, 2 Dec 2002 05:21:02 +0000 (05:21 +0000)]
Repair core dump when trying to delete an entry from an already-NULL
datconfig or useconfig field.  Per report from Dustin Sallings.

22 years agoFix script name in README.
Tom Lane [Mon, 2 Dec 2002 00:29:05 +0000 (00:29 +0000)]
Fix script name in README.

22 years agoFix dependency generation for multicolumn foreign keys. From Adam Buraczewski.
Tom Lane [Mon, 2 Dec 2002 00:28:34 +0000 (00:28 +0000)]
Fix dependency generation for multicolumn foreign keys.  From Adam Buraczewski.

22 years agoFix pg_dump failure against 7.1 or older servers, per
Tom Lane [Sun, 1 Dec 2002 18:44:09 +0000 (18:44 +0000)]
Fix pg_dump failure against 7.1 or older servers, per
report from Philip Warner.

22 years agoRepair coredump in COPY OUT when client encoding is different from
Tom Lane [Sun, 1 Dec 2002 17:33:33 +0000 (17:33 +0000)]
Repair coredump in COPY OUT when client encoding is different from
server encoding, per report from Nicolai Tufar.  This is a minimum-risk
patch for 7.3.1 --- I intend to apply a more general repair in HEAD.

22 years agoRepair prehistoric logic error in lseg_eq and lseg_ne.
Tom Lane [Fri, 29 Nov 2002 19:25:38 +0000 (19:25 +0000)]
Repair prehistoric logic error in lseg_eq and lseg_ne.

22 years agorm should be rm -f, per comment from Peter Harris. REL7_3
Tom Lane [Wed, 27 Nov 2002 23:21:20 +0000 (23:21 +0000)]
rm should be rm -f, per comment from Peter Harris.
(Checked with Peter Eisentraut.)

22 years agoUpdate resultmap pattern for geometry-solaris-i386-pc: should match
Tom Lane [Wed, 27 Nov 2002 17:04:45 +0000 (17:04 +0000)]
Update resultmap pattern for geometry-solaris-i386-pc: should match
solaris 2.8 as well as 2.7.  Per report from Martin Renters.

22 years agoUpdate TODO in 7.3 branch
Bruce Momjian [Tue, 26 Nov 2002 22:06:26 +0000 (22:06 +0000)]
Update TODO in 7.3 branch

22 years agoRecreate HISTORY file to match release.sgml changes. Stamp 7.3 final in
Bruce Momjian [Tue, 26 Nov 2002 22:04:55 +0000 (22:04 +0000)]
Recreate HISTORY file to match release.sgml changes.  Stamp 7.3 final in
configure/configure.in.

22 years agoUpdate build rules for /HISTORY.
Bruce Momjian [Tue, 26 Nov 2002 19:22:40 +0000 (19:22 +0000)]
Update build rules for /HISTORY.

22 years agoFix typo in release notes.
Bruce Momjian [Tue, 26 Nov 2002 05:17:27 +0000 (05:17 +0000)]
Fix typo in release notes.

22 years agoAllocate proper length for sprintf string, from Tatsuo.
Bruce Momjian [Tue, 26 Nov 2002 03:08:23 +0000 (03:08 +0000)]
Allocate proper length for sprintf string, from Tatsuo.

22 years agoGuard against 0 length string encoding conversion case.
Tatsuo Ishii [Tue, 26 Nov 2002 02:37:13 +0000 (02:37 +0000)]
Guard against 0 length string encoding conversion case.

22 years agoRemove check for pg_group file as part of initdb -W password assignment
Bruce Momjian [Mon, 25 Nov 2002 21:42:11 +0000 (21:42 +0000)]
Remove check for pg_group file as part of initdb -W password assignment
--- not needed.

22 years agoFix inappropriate quoting in dblink. From Joe Conway.
Tom Lane [Sat, 23 Nov 2002 18:59:29 +0000 (18:59 +0000)]
Fix inappropriate quoting in dblink.  From Joe Conway.

22 years agoUpdate ports list from recent regression-test-database entries.
Tom Lane [Sat, 23 Nov 2002 03:50:39 +0000 (03:50 +0000)]
Update ports list from recent regression-test-database entries.

22 years agoRelease note improvements (Neil, Tom)
Tom Lane [Sat, 23 Nov 2002 02:41:10 +0000 (02:41 +0000)]
Release note improvements (Neil, Tom)

22 years agoRemove inappropriate double-quoting in connectby() code; adjust
Tom Lane [Sat, 23 Nov 2002 01:54:23 +0000 (01:54 +0000)]
Remove inappropriate double-quoting in connectby() code; adjust
regression test to avoid using VALUE as a name.  From Joe Conway.

22 years agoFix a dozen or so places that were passing unpredictable data strings
Tom Lane [Fri, 22 Nov 2002 16:25:55 +0000 (16:25 +0000)]
Fix a dozen or so places that were passing unpredictable data strings
as elog format strings.  Hai-Chen Tu pointed out the problem in
contrib/dbmirror, but it wasn't the only such error.

22 years agoFix elog in dbmirror to use %s.
Bruce Momjian [Fri, 22 Nov 2002 16:05:06 +0000 (16:05 +0000)]
Fix elog in dbmirror to use %s.

Hai-Chen Tu

22 years agoQuote database name properly when invoking pg_dump. Per report from
Tom Lane [Fri, 22 Nov 2002 03:09:59 +0000 (03:09 +0000)]
Quote database name properly when invoking pg_dump.  Per report from
Christopher Kings-Lynne.

22 years agoTAS code originally written for s390 (32-bit) does not work for s390x
Tom Lane [Fri, 22 Nov 2002 01:13:28 +0000 (01:13 +0000)]
TAS code originally written for s390 (32-bit) does not work for s390x
(64-bit).  Fix it.  Per report from Permaine Cheung.

22 years agoFixups for man pages
Peter Eisentraut [Thu, 21 Nov 2002 23:31:58 +0000 (23:31 +0000)]
Fixups for man pages

22 years agoFix breakage in new-in-7.3 timetz_zone() function: was giving random
Tom Lane [Thu, 21 Nov 2002 23:31:37 +0000 (23:31 +0000)]
Fix breakage in new-in-7.3 timetz_zone() function: was giving random
results due to doing arithmetic on uninitialized values.  Add some
documentation about the AT TIME ZONE construct.  Update some other
date/time documentation that seemed out of date for 7.3.

22 years agoRegenerate
Peter Eisentraut [Thu, 21 Nov 2002 23:31:09 +0000 (23:31 +0000)]
Regenerate

22 years agoCode review for superuser_reserved_connections patch. Don't try to do
Tom Lane [Thu, 21 Nov 2002 06:36:27 +0000 (06:36 +0000)]
Code review for superuser_reserved_connections patch.  Don't try to do
database access outside a transaction; revert bogus performance improvement
in SIBackendInit(); improve comments; add documentation (this part courtesy
Neil Conway).

22 years agoNetBSD versions 1.6 and (we hope) later can use the standard geometry
Tom Lane [Thu, 21 Nov 2002 04:40:41 +0000 (04:40 +0000)]
NetBSD versions 1.6 and (we hope) later can use the standard geometry
comparison file, instead of geometry-positive-zeros.  Per report from
Patrick Welche.

22 years agoThis locale-specific variant file seems not to have been updated
Tom Lane [Thu, 21 Nov 2002 00:45:18 +0000 (00:45 +0000)]
This locale-specific variant file seems not to have been updated
when a test was added to select_having.sql back in June.

22 years agoUpdate ports list.
Bruce Momjian [Wed, 20 Nov 2002 22:02:25 +0000 (22:02 +0000)]
Update ports list.

22 years agoFix a stupid cut and paste error from the commit last night.
Barry Lind [Wed, 20 Nov 2002 20:42:24 +0000 (20:42 +0000)]
Fix a stupid cut and paste error from the commit last night.

 Modified Files:
  Tag: REL7_3_STABLE
  AbstractJdbc2Statement.java

22 years agoBackport bug with executeBatch. This bug was a regression from 7.2 and has
Barry Lind [Wed, 20 Nov 2002 07:54:27 +0000 (07:54 +0000)]
Backport bug with executeBatch.  This bug was a regression from 7.2 and has
been reported by Marko Strukelj and Keith Wannamaker

 Modified Files:
  Tag: REL7_3_STABLE
  jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java
  jdbc/org/postgresql/jdbc2/AbstractJdbc2Statement.java
  jdbc/org/postgresql/test/jdbc2/BatchExecuteTest.java

22 years agoBack out NetBSD/arm32 port.
Bruce Momjian [Tue, 19 Nov 2002 17:18:14 +0000 (17:18 +0000)]
Back out NetBSD/arm32 port.

22 years agoUpdate ports list.
Bruce Momjian [Tue, 19 Nov 2002 16:40:49 +0000 (16:40 +0000)]
Update ports list.

22 years agoFix markup breakage.
Bruce Momjian [Mon, 18 Nov 2002 19:30:33 +0000 (19:30 +0000)]
Fix markup breakage.

22 years agoFix typo and markup.
Peter Eisentraut [Mon, 18 Nov 2002 18:08:22 +0000 (18:08 +0000)]
Fix typo and markup.

22 years agoUpdate ports list.
Bruce Momjian [Mon, 18 Nov 2002 05:02:34 +0000 (05:02 +0000)]
Update ports list.

22 years agoStamp RC2.
Bruce Momjian [Mon, 18 Nov 2002 04:41:14 +0000 (04:41 +0000)]
Stamp RC2.

22 years agoPut back error test for DECLARE CURSOR outside a transaction block ...
Tom Lane [Mon, 18 Nov 2002 01:17:50 +0000 (01:17 +0000)]
Put back error test for DECLARE CURSOR outside a transaction block ...
but do it correctly now.