OSDN Git Service

pg-rex/syncrep.git
20 years agoRefactor code so that to_date() does not call to_timestamp() and then
Tom Lane [Mon, 25 Aug 2003 16:13:27 +0000 (16:13 +0000)]
Refactor code so that to_date() does not call to_timestamp() and then
perform a timestamp-to-date coercion.  Instead both routines share a
subroutine that delivers the parsing result as a struct tm.  This avoids
problems with timezone dependency of to_date's result, and should be
at least marginally faster too.

20 years agoSynced parser and fixed a bug in error output to log file.
Michael Meskes [Mon, 25 Aug 2003 13:44:00 +0000 (13:44 +0000)]
Synced parser and fixed a bug in error output to log file.

20 years agoAdd:
Bruce Momjian [Mon, 25 Aug 2003 04:10:59 +0000 (04:10 +0000)]
Add:

> * Add a libpq function to support Parse/DescribeStatement capability

20 years agoFix unixware thread test.
Bruce Momjian [Mon, 25 Aug 2003 02:48:25 +0000 (02:48 +0000)]
Fix unixware thread test.

20 years agoFix GB18030 to UTF-8 mapping table
Tatsuo Ishii [Mon, 25 Aug 2003 01:46:16 +0000 (01:46 +0000)]
Fix GB18030 to UTF-8 mapping table

20 years agoAdd quotes to += of unixware threads define.
Bruce Momjian [Sun, 24 Aug 2003 23:21:05 +0000 (23:21 +0000)]
Add quotes to += of unixware threads define.

20 years agoAdd:
Bruce Momjian [Sun, 24 Aug 2003 22:57:21 +0000 (22:57 +0000)]
Add:

* Allow TRUNCATE ... CASCADE/RESTRICT

20 years agoApplied patches from Oliver Jowett to fix the following bugs:
Barry Lind [Sun, 24 Aug 2003 22:10:09 +0000 (22:10 +0000)]
Applied patches from Oliver Jowett to fix the following bugs:
 - adds a finalizer method to AbstractJdbc1Statement to clean up in the case of
   poor user code which fails to close the statement object
 - fix ant build file to correctly detect dependencies across jdbc1/jdbc2/jdbc3
 - fix a coupld of server prepared statement bugs and added regression test for
   them
Applied patch from Kim Ho:
 - adds support for get/setMaxFieldSize().
Also fixed build.xml to provide a better error message in the event that an
older version of the driver exists in the classpath when trying to build.

20 years agoFix translation mistake.
Peter Eisentraut [Sun, 24 Aug 2003 21:26:34 +0000 (21:26 +0000)]
Fix translation mistake.

20 years agoTranslation updates
Peter Eisentraut [Sun, 24 Aug 2003 21:18:53 +0000 (21:18 +0000)]
Translation updates

20 years agoChange warnings for non-existing or pre-existing cursors to errors.
Peter Eisentraut [Sun, 24 Aug 2003 21:02:43 +0000 (21:02 +0000)]
Change warnings for non-existing or pre-existing cursors to errors.

20 years agoAdd macros for error result fields to libpq.
Peter Eisentraut [Sun, 24 Aug 2003 18:36:38 +0000 (18:36 +0000)]
Add macros for error result fields to libpq.

20 years agoFix GB18030 to UTF-8 mapping table
Tatsuo Ishii [Sun, 24 Aug 2003 05:18:04 +0000 (05:18 +0000)]
Fix GB18030 to UTF-8 mapping table

20 years agoBring the makefiles up to our conventions.
Peter Eisentraut [Sat, 23 Aug 2003 04:25:29 +0000 (04:25 +0000)]
Bring the makefiles up to our conventions.

20 years agoEnable uninstalling data files that were installed from a subdirectory of
Peter Eisentraut [Sat, 23 Aug 2003 04:23:38 +0000 (04:23 +0000)]
Enable uninstalling data files that were installed from a subdirectory of
the source tree.

20 years agoFix uninstall target.
Peter Eisentraut [Sat, 23 Aug 2003 04:22:34 +0000 (04:22 +0000)]
Fix uninstall target.

20 years agoCorrect uninstall target.
Peter Eisentraut [Sat, 23 Aug 2003 04:21:59 +0000 (04:21 +0000)]
Correct uninstall target.

20 years agoTweak grammar to use FastAppend rather than lappend when constructing
Tom Lane [Fri, 22 Aug 2003 20:34:33 +0000 (20:34 +0000)]
Tweak grammar to use FastAppend rather than lappend when constructing
expr_lists.  This appears to be the only remaining O(N^2) bottleneck
in processing many-way 'x IN (a,b,c,...)' conditions.

20 years agoTweak processing of multiple-index-scan plans to reduce overhead when
Tom Lane [Fri, 22 Aug 2003 20:26:43 +0000 (20:26 +0000)]
Tweak processing of multiple-index-scan plans to reduce overhead when
handling many-way scans: instead of re-evaluating all prior indexscan
quals to see if a tuple has been fetched more than once, use a hash table
indexed by tuple CTID.  But fall back to the old way if the hash table
grows to exceed SortMem.

20 years agoISpell info updated
Teodor Sigaev [Thu, 21 Aug 2003 15:53:21 +0000 (15:53 +0000)]
ISpell info updated

20 years agoTranslation updates
Peter Eisentraut [Wed, 20 Aug 2003 21:10:01 +0000 (21:10 +0000)]
Translation updates

20 years agoUpdates for array documentation, from Joe Conway.
Tom Lane [Tue, 19 Aug 2003 06:06:48 +0000 (06:06 +0000)]
Updates for array documentation, from Joe Conway.

20 years agoImprove dynahash.c's API so that caller can specify the comparison function
Tom Lane [Tue, 19 Aug 2003 01:13:41 +0000 (01:13 +0000)]
Improve dynahash.c's API so that caller can specify the comparison function
as well as the hash function (formerly the comparison function was hardwired
as memcmp()).  This makes it possible to eliminate the special-purpose
hashtable management code in execGrouping.c in favor of using dynahash to
manage tuple hashtables; which is a win because dynahash knows how to expand
a hashtable when the original size estimate was too small, whereas the
special-purpose code was too stupid to do that.  (See recent gripe from
Stephan Szabo about poor performance when hash table size estimate is way
off.)  Free side benefit: when using string_hash, the default comparison
function is now strncmp() instead of memcmp().  This should eliminate some
part of the overhead associated with larger NAMEDATALEN values.

20 years agoWhen compiling a plpgsql trigger function, include the OID of the table
Tom Lane [Mon, 18 Aug 2003 19:16:02 +0000 (19:16 +0000)]
When compiling a plpgsql trigger function, include the OID of the table
the trigger is attached to in the hashkey.  This ensures that we will
create separate compiled trees for each table the trigger is used with,
avoiding possible datatype-mismatch problems if the tables have different
rowtypes.  This is essentially the same bug recently identified in plpython
--- though plpgsql doesn't seem as prone to crash when the rowtype changes
underneath it.  But failing robustly is no substitute for just working.

20 years agoDone:
Bruce Momjian [Mon, 18 Aug 2003 02:52:45 +0000 (02:52 +0000)]
Done:

> * -Add btree index support for reltime, tinterval, regproc (Tom)

20 years agoFix ARRAY[] construct so that in multidimensional case, elements can
Tom Lane [Sun, 17 Aug 2003 23:43:27 +0000 (23:43 +0000)]
Fix ARRAY[] construct so that in multidimensional case, elements can
be anything yielding an array of the proper kind, not only sub-ARRAY[]
constructs; do subscript checking at runtime not parse time.  Also,
adjust array_cat to make array || array comply with the SQL99 spec.

Joe Conway

20 years agoClean up locktable init code per recent gripe from Kurt Roeckx.
Tom Lane [Sun, 17 Aug 2003 22:41:12 +0000 (22:41 +0000)]
Clean up locktable init code per recent gripe from Kurt Roeckx.
No change in behavior, but old code would have failed to detect
overrun of MAX_LOCKMODES.

20 years agoSomebody forgot to include any actual documentation for ADD_MISSING_FROM.
Tom Lane [Sun, 17 Aug 2003 22:19:15 +0000 (22:19 +0000)]
Somebody forgot to include any actual documentation for ADD_MISSING_FROM.

20 years agoUpdate documentation to reflect the fact that ORDER BY, GROUP BY, etc
Tom Lane [Sun, 17 Aug 2003 22:09:00 +0000 (22:09 +0000)]
Update documentation to reflect the fact that ORDER BY, GROUP BY, etc
are now driven by the default btree opclass, rather than assuming that
particular operator names have the needed semantics.

20 years agoFix broken markup.
Tom Lane [Sun, 17 Aug 2003 22:05:13 +0000 (22:05 +0000)]
Fix broken markup.

20 years agoCreate a 'type cache' that keeps track of the data needed for any particular
Tom Lane [Sun, 17 Aug 2003 19:58:06 +0000 (19:58 +0000)]
Create a 'type cache'  that keeps track of the data needed for any particular
datatype by array_eq and array_cmp; use this to solve problems with memory
leaks in array indexing support.  The parser's equality_oper and ordering_oper
routines also use the cache.  Change the operator search algorithms to look
for appropriate btree or hash index opclasses, instead of assuming operators
named '<' or '=' have the right semantics.  (ORDER BY ASC/DESC now also look
at opclasses, instead of assuming '<' and '>' are the right things.)  Add
several more index opclasses so that there is no regression in functionality
for base datatypes.  initdb forced due to catalog additions.

20 years agoAdd to release notes.
Bruce Momjian [Sun, 17 Aug 2003 05:24:52 +0000 (05:24 +0000)]
Add to release notes.

20 years agoAdd:
Bruce Momjian [Sun, 17 Aug 2003 05:23:13 +0000 (05:23 +0000)]
Add:

> * Allow PREPARE of cursors

20 years agoI almost forgot mark in docs "to_char(interval)" as deprecated function.
Bruce Momjian [Sun, 17 Aug 2003 04:52:41 +0000 (04:52 +0000)]
I almost forgot mark in docs "to_char(interval)" as deprecated function.
This useless routine will removed in 7.5. It's already discussed (see
hackers list archive).

Karel Zak

20 years agoAdd:
Bruce Momjian [Sun, 17 Aug 2003 04:50:57 +0000 (04:50 +0000)]
Add:

> * Fix upper()/lower() to work for multibyte encodings
>

20 years agoThis patch makes two minor fixes to the docs: (1) fixes a
Bruce Momjian [Sun, 17 Aug 2003 04:46:59 +0000 (04:46 +0000)]
This patch makes two minor fixes to the docs: (1) fixes a
spelling mistake in the PREPARE ref page (2) Makes some
English more consistent, in the ref pages for some of the
client apps (3) Adds a link to the libpq docs in the
vacuumdb ref page.

Neil Conway

20 years agoThere is a misstatement in the CLOSE reference page, now that we
Bruce Momjian [Sun, 17 Aug 2003 04:46:00 +0000 (04:46 +0000)]
There is a misstatement in the CLOSE reference page, now that we
have cursors that might outlive their creating transactions. A
patch is attached that fixes this (suggestions on better wording
are welcome).

Neil Conway

20 years agoAdd:
Bruce Momjian [Sun, 17 Aug 2003 04:43:48 +0000 (04:43 +0000)]
Add:

> * Allow pooled connections to query prepared queries
> * Allow pooled connections to close all open WITH HOLD cursors

20 years agoI just noticed that the sample pg_hba.conf in the docs doesn't contain
Bruce Momjian [Sun, 17 Aug 2003 04:39:11 +0000 (04:39 +0000)]
I just noticed that the sample pg_hba.conf in the docs doesn't contain
any use of CIDR masks - here's a patch that adds  a couple of  sample
lines and associated comments.

Andrew Dunstan

20 years agoThe attached patch adds some clarification to the documentation of the
Bruce Momjian [Sun, 17 Aug 2003 04:33:02 +0000 (04:33 +0000)]
The attached patch adds some clarification to the documentation of the
binary format read/created by COPY BINARY. It also mentions the
contrib/binarycopy module.

Lee Kindness.

20 years agoAdd:
Bruce Momjian [Sun, 17 Aug 2003 04:28:15 +0000 (04:28 +0000)]
Add:

> * Add ALTER DOMAIN, AGGREGATE, CONVERSION, SEQUENCE ... OWNER TO
>

20 years agoAdd:
Bruce Momjian [Sun, 17 Aug 2003 04:18:01 +0000 (04:18 +0000)]
Add:

> * Add TRUNCATE ... CASCADE

20 years agoAdd:
Bruce Momjian [Sun, 17 Aug 2003 03:56:16 +0000 (03:56 +0000)]
Add:

> * Add pg_get_acldef(), pg_get_typedefault(), and pg_get_attrdef()

20 years ago(I always forget what the magic numbers 0 through 2 means for the
Bruce Momjian [Sun, 17 Aug 2003 03:17:22 +0000 (03:17 +0000)]
(I always forget what the magic numbers 0 through 2 means for the
"syslog" option.)

By the way: The "virtual_host" parameter is a bad name for that
particular option, I think. "Virtual host" signals that PostgreSQL will
behave differently according to which IP address it's contacted (like
Apache's virtual host support which makes the web-server serve different
sites according to different criteria). A better word for the options
would be "tcpip_listen_addr" or something like that.

Troels Arvin

20 years agoAdd mention of sort_mem in the restore docs.
Bruce Momjian [Sun, 17 Aug 2003 03:14:26 +0000 (03:14 +0000)]
Add mention of sort_mem in the restore docs.

20 years agoUpdate for 7.3 tips URL.
Bruce Momjian [Sun, 17 Aug 2003 00:41:46 +0000 (00:41 +0000)]
Update for 7.3 tips URL.

20 years agoAdd to libpq changes made by Tom for new protocol.
Bruce Momjian [Sun, 17 Aug 2003 00:20:21 +0000 (00:20 +0000)]
Add to libpq changes made by Tom for new protocol.

20 years agoNot needed, already in CVS.
Bruce Momjian [Sun, 17 Aug 2003 00:14:13 +0000 (00:14 +0000)]
Not needed, already in CVS.

20 years agoAdd description of error style.
Bruce Momjian [Sat, 16 Aug 2003 23:53:54 +0000 (23:53 +0000)]
Add description of error style.

20 years agoAdd mention that Kerberos 4 isn't recommended.
Bruce Momjian [Sat, 16 Aug 2003 23:33:49 +0000 (23:33 +0000)]
Add mention that Kerberos 4 isn't recommended.

20 years agoMake NEED_REENTRANT_FUNC_NAMES _require_ *_r functions, and add tests to
Bruce Momjian [Sat, 16 Aug 2003 15:35:51 +0000 (15:35 +0000)]
Make NEED_REENTRANT_FUNC_NAMES _require_ *_r functions, and add tests to
configure to report if they are not found.

20 years agoUpdated the blob regression test to actually use the getBlob/getClob methods
Barry Lind [Fri, 15 Aug 2003 18:45:11 +0000 (18:45 +0000)]
Updated the blob regression test to actually use the getBlob/getClob methods
and test them, in addition to testing the underlying LargeObject API methods.

 Modified Files:
  jdbc/build.xml jdbc/org/postgresql/test/jdbc2/BlobTest.java

20 years agoFixed improper message length for the connection termination message 'X' when
Barry Lind [Fri, 15 Aug 2003 18:36:58 +0000 (18:36 +0000)]
Fixed improper message length for the connection termination message 'X' when
using the V3 protocol.

 Modified Files:
  jdbc1/AbstractJdbc1Connection.java

20 years agoEliminate function start_parse_fh and macro YY_INPUT
Teodor Sigaev [Fri, 15 Aug 2003 13:44:35 +0000 (13:44 +0000)]
Eliminate function start_parse_fh and macro YY_INPUT

20 years agoRewrite array_cmp to not depend on deconstruct_array. Should be a little
Tom Lane [Fri, 15 Aug 2003 00:22:26 +0000 (00:22 +0000)]
Rewrite array_cmp to not depend on deconstruct_array.  Should be a little
faster, but more importantly does not leak memory.  Still needs more work
though, per my recent note to pgsql-hackers.

20 years agoAdd disk rotation idea to WAL todo emails.
Bruce Momjian [Thu, 14 Aug 2003 23:13:42 +0000 (23:13 +0000)]
Add disk rotation idea to WAL todo emails.

20 years agoMinor copy-editing.
Tom Lane [Thu, 14 Aug 2003 23:13:27 +0000 (23:13 +0000)]
Minor copy-editing.

20 years agoAdjustment for unixware threading.
Bruce Momjian [Thu, 14 Aug 2003 21:24:38 +0000 (21:24 +0000)]
Adjustment for unixware threading.

20 years agoMark unixware as having threaded support.
Bruce Momjian [Thu, 14 Aug 2003 21:14:17 +0000 (21:14 +0000)]
Mark unixware as having threaded support.

20 years agoFix longstanding thinko in SSL protocol documentation: the server's
Tom Lane [Thu, 14 Aug 2003 20:09:31 +0000 (20:09 +0000)]
Fix longstanding thinko in SSL protocol documentation: the server's
initial response is 'S', not 'Y', when it is willing to do SSL.

20 years agoAdd missing quotes.
Tom Lane [Thu, 14 Aug 2003 18:56:41 +0000 (18:56 +0000)]
Add missing quotes.

20 years agoSomeone moved PageOutput here from common.c, but forgot to move all
Tom Lane [Thu, 14 Aug 2003 18:49:42 +0000 (18:49 +0000)]
Someone moved PageOutput here from common.c, but forgot to move all
the #includes it depends on.

20 years agoRemove unnecessary #include's (see c.h).
Tom Lane [Thu, 14 Aug 2003 18:48:35 +0000 (18:48 +0000)]
Remove unnecessary #include's (see c.h).

20 years agoWorkaround for platforms that have getaddrinfo() without AI_NUMERICHOST.
Tom Lane [Thu, 14 Aug 2003 18:32:55 +0000 (18:32 +0000)]
Workaround for platforms that have getaddrinfo() without AI_NUMERICHOST.
We don't actually need the flag, so just #define it as zero in such cases.

20 years agoHandle double-quotes correctly in user names in ACL lists.
Tom Lane [Thu, 14 Aug 2003 14:19:11 +0000 (14:19 +0000)]
Handle double-quotes correctly in user names in ACL lists.

Christopher Kings-Lynne

20 years agoDocument threading status.
Bruce Momjian [Thu, 14 Aug 2003 05:27:18 +0000 (05:27 +0000)]
Document threading status.

Update to POSIX getpwuid_r() function.

20 years agoAdjust for compiler options for compiler bug.
Bruce Momjian [Wed, 13 Aug 2003 23:59:49 +0000 (23:59 +0000)]
Adjust for compiler options for compiler bug.

Larry Rosenman

20 years agolibpq failed to cope with COPY FROM STDIN if the command was issued
Tom Lane [Wed, 13 Aug 2003 18:56:21 +0000 (18:56 +0000)]
libpq failed to cope with COPY FROM STDIN if the command was issued
via extended query protocol, because it sends Sync right after Execute
without realizing that the command to be executed is COPY.  There seems
to be no reasonable way for it to realize that, either, so the best fix
seems to be to make the backend ignore Sync during copy-in mode.  Bit of
a wart on the protocol, but little alternative.  Also, libpq must send
another Sync after terminating the COPY, if the command was issued via
Execute.

20 years agoAdd PQexecPrepared() and PQsendQueryPrepared() functions, to allow
Tom Lane [Wed, 13 Aug 2003 16:29:03 +0000 (16:29 +0000)]
Add PQexecPrepared() and PQsendQueryPrepared() functions, to allow
libpq users to perform Bind/Execute of previously prepared statements.
Per yesterday's discussion, this offers enough performance improvement
to justify bending the 'no new features during beta' rule.

20 years agoMove MemoryContextCheck() call from bottom of PostgresMain loop to
Tom Lane [Wed, 13 Aug 2003 16:16:23 +0000 (16:16 +0000)]
Move MemoryContextCheck() call from bottom of PostgresMain loop to
just before CommitTransactionCommand().  This is a more sensible place
to put it since commit discards a lot of contexts, and we'd not find
out about stomps affecting only transaction-local contexts.

20 years agoCorrect error messages
Teodor Sigaev [Wed, 13 Aug 2003 14:41:59 +0000 (14:41 +0000)]
Correct error messages

20 years agoMore accuracy work with MinWords option of headline function
Teodor Sigaev [Wed, 13 Aug 2003 14:37:55 +0000 (14:37 +0000)]
More accuracy work with MinWords option of headline function

20 years agoI'm quite fond of doing VPATH builds, i.e. building outside the source
Bruce Momjian [Wed, 13 Aug 2003 03:12:04 +0000 (03:12 +0000)]
I'm quite fond of doing VPATH builds, i.e. building outside the source
tree. This also catches lots of little Makefile bugs, so here's a small
patch for one of them (replacing an explicit reference to thread.c with
a reference to it as the first prerequsite of the rule makes make look
for it in the place where it was found (the source tree) rather than in
the build tree. (using GNU make 3.79.1)

John Gray

20 years agoInclude 'IPv4', 'IPv6', or 'Unix' in socket-creation failure messages,
Tom Lane [Tue, 12 Aug 2003 22:42:01 +0000 (22:42 +0000)]
Include 'IPv4', 'IPv6', or 'Unix' in socket-creation failure messages,
in hopes of soothing fears of those with partial IPv6 support.  Still an
open question whether we should report EAFNOSUPPORT errors at all,
though.

20 years agoCope with NoData message from backend. Needed for case where
Tom Lane [Tue, 12 Aug 2003 21:34:44 +0000 (21:34 +0000)]
Cope with NoData message from backend.  Needed for case where
PQexecParams is used with a statement that doesn't return data.

20 years agoMarginal hacks to move some processing out of the per-client-message
Tom Lane [Tue, 12 Aug 2003 18:52:38 +0000 (18:52 +0000)]
Marginal hacks to move some processing out of the per-client-message
processing loop; avoids extra overhead when using parse/bind/execute
messages instead of single Query message.

20 years agoChange some frequently-reached elog(DEBUG...) calls to ereport(DEBUG...)
Tom Lane [Tue, 12 Aug 2003 18:23:21 +0000 (18:23 +0000)]
Change some frequently-reached elog(DEBUG...) calls to ereport(DEBUG...)
for speed reasons.  (ereport falls out much more quickly when no output
is needed than elog does.)

20 years agoAvoid unnecessary work when stats collection is disabled. Tighten
Tom Lane [Tue, 12 Aug 2003 16:21:18 +0000 (16:21 +0000)]
Avoid unnecessary work when stats collection is disabled.  Tighten
search loop in pgstat_initstats.  Per report from Gavin Sherry.

20 years agoApplied patch from Oliver Jowett to clean up the jdbc regression test build
Barry Lind [Mon, 11 Aug 2003 23:42:04 +0000 (23:42 +0000)]
Applied patch from Oliver Jowett to clean up the jdbc regression test build

 Modified Files:
  jdbc/build.xml
  jdbc/org/postgresql/test/jdbc3/Jdbc3TestSuite.java

20 years agoRewriter and planner should use only resno, not resname, to identify
Tom Lane [Mon, 11 Aug 2003 23:04:50 +0000 (23:04 +0000)]
Rewriter and planner should use only resno, not resname, to identify
target columns in INSERT and UPDATE targetlists.  Don't rely on resname
to be accurate in ruleutils, either.  This fixes bug reported by
Donald Fraser, in which renaming a column referenced in a rule did not
work very well.

20 years agoAdd:
Bruce Momjian [Mon, 11 Aug 2003 22:39:48 +0000 (22:39 +0000)]
Add:

> * Prevent unneeded quoting in psql \d output using fmtId()

20 years agoApplied patch from Oliver Jowett to better handle invalid input for getArray
Barry Lind [Mon, 11 Aug 2003 21:33:50 +0000 (21:33 +0000)]
Applied patch from Oliver Jowett to better handle invalid input for getArray
(no longer throw an index out of range exception)

 Modified Files:
  jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java

20 years agoApplied patch from Oliver Jowett to clean up some aditional warning messages
Barry Lind [Mon, 11 Aug 2003 21:27:52 +0000 (21:27 +0000)]
Applied patch from Oliver Jowett to clean up some aditional warning messages
from ant.

 Modified Files:
  jdbc/build.xml

20 years agoApplied patch from Oliver Jewett to fix a deprecation in newer versions of ant
Barry Lind [Mon, 11 Aug 2003 21:25:01 +0000 (21:25 +0000)]
Applied patch from Oliver Jewett to fix a deprecation in newer versions of ant

 Modified Files:
  jdbc/build.xml

20 years agoApplied patch from Oliver Jewett to clean up the testing README file
Barry Lind [Mon, 11 Aug 2003 21:20:50 +0000 (21:20 +0000)]
Applied patch from Oliver Jewett to clean up the testing README file

 Modified Files:
  jdbc/org/postgresql/test/README

20 years agoApplied patch by Oliver Jowett to clean up some exception handling
Barry Lind [Mon, 11 Aug 2003 21:18:47 +0000 (21:18 +0000)]
Applied patch by Oliver Jowett to clean up some exception handling

 Modified Files:
  jdbc/org/postgresql/core/QueryExecutor.java
  jdbc/org/postgresql/util/PSQLException.java

20 years agoApplied patch from Oliver Jowett to improve a buffer sizing.
Barry Lind [Mon, 11 Aug 2003 21:12:00 +0000 (21:12 +0000)]
Applied patch from Oliver Jowett to improve a buffer sizing.

 Modified Files:
  jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java

20 years agoApplied patch from Kim Ho to fix a regression against a 7.4 server. The result
Barry Lind [Mon, 11 Aug 2003 20:54:55 +0000 (20:54 +0000)]
Applied patch from Kim Ho to fix a regression against a 7.4 server.  The result
of transaction isolation level changed from uppercase to lower case between 7.3 and 7.4.  In testing, a regression was also fixed in this area when talking to
a 7.2 server due to changes in how notice messages are processed in the current
code.

 Modified Files:
  jdbc/build.xml jdbc/org/postgresql/core/BaseStatement.java
  jdbc/org/postgresql/jdbc1/AbstractJdbc1Connection.java

20 years agoCode cleanup inspired by recent resname bug report (doesn't fix the bug
Tom Lane [Mon, 11 Aug 2003 20:46:47 +0000 (20:46 +0000)]
Code cleanup inspired by recent resname bug report (doesn't fix the bug
yet, though).  Avoid using nth() to fetch tlist entries; provide a
common routine get_tle_by_resno() to search a tlist for a particular
resno.  This replaces a couple uses of nth() and a dozen hand-coded
search loops.  Also, replace a few uses of nth(length-1, list) with
llast().

20 years agoDo not link in libwsock32 on non-win32 platforms. Improve grammar
Tom Lane [Mon, 11 Aug 2003 18:07:38 +0000 (18:07 +0000)]
Do not link in libwsock32 on non-win32 platforms.  Improve grammar
of thread-safety comments.

20 years agoTranslation updates
Peter Eisentraut [Mon, 11 Aug 2003 15:19:58 +0000 (15:19 +0000)]
Translation updates

20 years agoRepair potential deadlock created by recent changes to recycle btree
Tom Lane [Sun, 10 Aug 2003 19:48:08 +0000 (19:48 +0000)]
Repair potential deadlock created by recent changes to recycle btree
index pages: when _bt_getbuf asks the FSM for a free index page, it is
possible (and, in some cases, even moderately likely) that the answer
will be the same page that _bt_split is trying to split.  _bt_getbuf
already knew that the returned page might not be free, but it wasn't
prepared for the possibility that even trying to lock the page could
be problematic.  Fix by doing a conditional rather than unconditional
grab of the page lock.

20 years agoMake various links point to specific places instead of entire parts
Tom Lane [Sun, 10 Aug 2003 01:20:34 +0000 (01:20 +0000)]
Make various links point to specific places instead of entire parts
(doubtless these are hangovers from the old separate-books days).

20 years agoRequest verbose error message output in bug reports.
Tom Lane [Sun, 10 Aug 2003 01:19:18 +0000 (01:19 +0000)]
Request verbose error message output in bug reports.

20 years agoUpdate docs for 7.4 array features and polymorphic functions.
Tom Lane [Sat, 9 Aug 2003 22:50:22 +0000 (22:50 +0000)]
Update docs for 7.4 array features and polymorphic functions.
This is Joe Conway's patch of 7-Aug plus further editorializing
of my own.

20 years agoI get the following warning when I compile src/bin/pg_id/pg_id.c:
Bruce Momjian [Sat, 9 Aug 2003 01:25:46 +0000 (01:25 +0000)]
I get the following warning when I compile src/bin/pg_id/pg_id.c:

gcc -pipe -g -Wall -Wmissing-prototypes -Wmissing-declarations
-I../../../src/include   -c -o pg_id.o pg_id.c -MMD
pg_id.c: In function `main':
pg_id.c:35: warning: unused variable `optarg'

The attached trivial patch fixes the warning by removing the variable.

Neil Conway

20 years agoThis makes psql use the new pg_get_viewdef function. It also puts one
Bruce Momjian [Sat, 9 Aug 2003 01:21:54 +0000 (01:21 +0000)]
This makes psql use the new pg_get_viewdef function.  It also puts one
extra line break in to improve formatting.

Christopher Kings-Lynne

20 years agoAnother pgindent run with updated typedefs.
Bruce Momjian [Fri, 8 Aug 2003 21:42:59 +0000 (21:42 +0000)]
Another pgindent run with updated typedefs.

20 years agopgindent fix for new typedefs.
Bruce Momjian [Fri, 8 Aug 2003 21:25:06 +0000 (21:25 +0000)]
pgindent fix for new typedefs.

20 years agoAdd:
Bruce Momjian [Fri, 8 Aug 2003 20:31:26 +0000 (20:31 +0000)]
Add:

> * Allow clients to query WITH HOLD cursors and prepared statements
503d503
<