OSDN Git Service

pg-rex/syncrep.git
20 years ago"statenebt" ?
Tom Lane [Mon, 8 Sep 2003 22:33:13 +0000 (22:33 +0000)]
"statenebt" ?

20 years agoDocument a bunch of formerly-undocumented date/time operators,
Tom Lane [Mon, 8 Sep 2003 19:38:02 +0000 (19:38 +0000)]
Document a bunch of formerly-undocumented date/time operators,
including the SQL-spec OVERLAPS construct.

20 years agoOpps, can't forget the new file. This is part of the last commit to apply
Barry Lind [Mon, 8 Sep 2003 17:45:35 +0000 (17:45 +0000)]
Opps, can't forget the new file.  This is part of the last commit to apply
the redhat patch for SQLState support.

 Added Files:
  PSQLState.java

20 years agoThis set of changes applies a patch from KHO at redhat to add some SQLState
Barry Lind [Mon, 8 Sep 2003 17:30:22 +0000 (17:30 +0000)]
This set of changes applies a patch from KHO at redhat to add some SQLState
support to the jdbc driver.
That patch needed some work: it assumed the sqlcode in a server message was
fixed in its position, the patch lost the ability to pass exceptions, and the
patch missed a couple of places where server errors where being received.
In addition to fixing the above, I also added full support for the V3 protocol
error message syntax, I reversed the order of arguments in the PSQLException
constructor to more closely follow the constructors for SQLException, I changed
the new constructors that take PSQLState to take Object for additional
parameters as the old ones did.
Still todo are to add SQLState values to all existing exceptions thrown in the
driver and add support for parsing the V3 protocol format for notices.

 Modified Files:
  jdbc/build.xml jdbc/org/postgresql/Driver.java.in
  jdbc/org/postgresql/errors.properties
  jdbc/org/postgresql/core/Encoding.java
  jdbc/org/postgresql/core/PGStream.java
  jdbc/org/postgresql/core/QueryExecutor.java
  jdbc/org/postgresql/fastpath/Fastpath.java
  jdbc/org/postgresql/jdbc1/AbstractJdbc1Connection.java
  jdbc/org/postgresql/jdbc1/AbstractJdbc1ResultSet.java
  jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java
  jdbc/org/postgresql/jdbc2/AbstractJdbc2ResultSet.java
  jdbc/org/postgresql/jdbc2/AbstractJdbc2Statement.java
  jdbc/org/postgresql/util/MessageTranslator.java
  jdbc/org/postgresql/util/PSQLException.java

20 years agoAvoid using s_addr as a local variable name, to work around broken
Tom Lane [Mon, 8 Sep 2003 00:56:13 +0000 (00:56 +0000)]
Avoid using s_addr as a local variable name, to work around broken
system headers on Unixware.

20 years agoUpdate URL.
Bruce Momjian [Sun, 7 Sep 2003 22:02:54 +0000 (22:02 +0000)]
Update URL.

20 years agoUpdate URL to be momjian.postgresql.org.
Bruce Momjian [Sun, 7 Sep 2003 22:01:42 +0000 (22:01 +0000)]
Update URL to be momjian.postgresql.org.

20 years agoautoconf run.
Bruce Momjian [Sun, 7 Sep 2003 16:49:41 +0000 (16:49 +0000)]
autoconf run.

20 years agoAdd $srcdir for Win32 builds, from Peter.
Bruce Momjian [Sun, 7 Sep 2003 16:38:05 +0000 (16:38 +0000)]
Add $srcdir for Win32 builds, from Peter.

20 years agoRemove another useless, counterproductive srandom() call.
Tom Lane [Sun, 7 Sep 2003 15:27:25 +0000 (15:27 +0000)]
Remove another useless, counterproductive srandom() call.

20 years agoRemove geqo_random_seed parameter. Having geqo reset the global random()
Tom Lane [Sun, 7 Sep 2003 15:26:54 +0000 (15:26 +0000)]
Remove geqo_random_seed parameter.  Having geqo reset the global random()
sequence every time it's called is bogus --- it interferes with user
control over the seed, and actually decreases randomness overall
(because a seed based on time(NULL) is pretty predictable).  If you really
want a reproducible result from geqo, do 'set seed = 0' before planning
a query.

20 years agoRemove check on source address of a statistics packet. Check was broken
Tom Lane [Sun, 7 Sep 2003 14:44:40 +0000 (14:44 +0000)]
Remove check on source address of a statistics packet.  Check was broken
by recent IPv6 changes, and since it's redundant with a kernel-level check
anyway, it seems not worth trying to fix it.  Per recent discussions.

20 years agoChanges for MinGW/WIN32:
Bruce Momjian [Sun, 7 Sep 2003 03:43:57 +0000 (03:43 +0000)]
Changes for MinGW/WIN32:

        o allow configure to see include/port/win32 include files
        o add matching Win32 accept() prototype
        o allow pg_id to compile with native Win32 API
        o fix invalide mbvalidate() function calls (existing bug)
        o allow /scripts to compile with native Win32 API
        o add win32.c to Win32 compiles (already in *.mak files)

20 years agoMake the default pg_hba.conf include an entry for ::1 only if configure
Tom Lane [Sun, 7 Sep 2003 03:36:03 +0000 (03:36 +0000)]
Make the default pg_hba.conf include an entry for ::1 only if configure
set HAVE_IPV6.  Per recent discussions.

20 years agoload_file() has to remove pre-existing shlibs that match the new file
Tom Lane [Sun, 7 Sep 2003 02:18:01 +0000 (02:18 +0000)]
load_file() has to remove pre-existing shlibs that match the new file
on either name or inode; otherwise load_external_function() won't do
anything.  At least on Linux, it appears that recompiling a shlib leads
to a new file with a different inode, so the old code failed to detect
a match.

20 years agoMake all valid uses of the COLLATE clause yield the same result: a syntax
Peter Eisentraut [Sat, 6 Sep 2003 14:01:51 +0000 (14:01 +0000)]
Make all valid uses of the COLLATE clause yield the same result: a syntax
error.  There is no point in providing some kind of forward compatibility
now, because no one can tell what a future implementation will look like.

20 years agoRename variables for clarity.
Bruce Momjian [Sat, 6 Sep 2003 01:41:56 +0000 (01:41 +0000)]
Rename variables for clarity.

20 years agoSecond try at IPv4-to-v6 mapping code; avoid assuming that the struct
Tom Lane [Fri, 5 Sep 2003 23:07:21 +0000 (23:07 +0000)]
Second try at IPv4-to-v6 mapping code; avoid assuming that the struct
returned by getaddrinfo_all will have enough room for an IPv6 address.

20 years agoAllow IPv4-format entries in pg_hba.conf to match IPv6 connections
Tom Lane [Fri, 5 Sep 2003 20:31:36 +0000 (20:31 +0000)]
Allow IPv4-format entries in pg_hba.conf to match IPv6 connections
that have IPv4-embedded-in-IPv6 addresses.  Per idea of Andreas Pflug.

20 years agoDone:
Bruce Momjian [Fri, 5 Sep 2003 19:52:10 +0000 (19:52 +0000)]
Done:

< * Allow psql to do table completion for SELECT * FROM schema_part and
> * -Allow psql to do table completion for SELECT * FROM schema_part and

20 years agoifdef out pqGetpwuid() because Win32 doesn't have struct passwd.
Bruce Momjian [Fri, 5 Sep 2003 17:43:40 +0000 (17:43 +0000)]
ifdef out pqGetpwuid() because Win32 doesn't have struct passwd.

Needed for libpq builds, not just for native Win32 port, and probably
for cygwin too.

20 years agoAdd WIN32 URL.
Bruce Momjian [Fri, 5 Sep 2003 16:43:13 +0000 (16:43 +0000)]
Add WIN32 URL.

20 years agoAdd missing space.
Tom Lane [Fri, 5 Sep 2003 16:13:38 +0000 (16:13 +0000)]
Add missing space.

20 years agoThis fixes three minor typos in hba.c.
Bruce Momjian [Fri, 5 Sep 2003 03:57:13 +0000 (03:57 +0000)]
This fixes three minor typos in hba.c.

--
Alvaro Herrera (<alvherre[a]dcc.uchile.cl>)

20 years agoUpdate information about Linux's overcommit memory behavior.
Bruce Momjian [Fri, 5 Sep 2003 02:54:09 +0000 (02:54 +0000)]
Update information about Linux's overcommit memory behavior.

Andrew Dunstan

20 years agoAdd:
Bruce Momjian [Fri, 5 Sep 2003 02:51:55 +0000 (02:51 +0000)]
Add:

> * Maintain a map of recently-expired of pages so vacuum can reclaim
>   free space without a sequential scan

20 years agoClean up WIN32_CONSOLE code.
Bruce Momjian [Fri, 5 Sep 2003 02:31:10 +0000 (02:31 +0000)]
Clean up WIN32_CONSOLE code.

20 years agoUpdate as done:
Bruce Momjian [Fri, 5 Sep 2003 02:20:50 +0000 (02:20 +0000)]
Update as done:

> * -Improve concurrency of hash indexes (Tom)

20 years agoEnable Win32 to compile libpq again, and enable SSL compiles on that
Bruce Momjian [Fri, 5 Sep 2003 02:08:36 +0000 (02:08 +0000)]
Enable Win32 to compile libpq again, and enable SSL compiles on that
platform.

Andreas Pflug

20 years agoImprove prototype casting for thread calls.
Bruce Momjian [Fri, 5 Sep 2003 01:53:41 +0000 (01:53 +0000)]
Improve prototype casting for thread calls.

20 years agoAdd:
Bruce Momjian [Fri, 5 Sep 2003 01:10:07 +0000 (01:10 +0000)]
Add:

>  o Allow ALTER TABLE ... ALTER CONSTRAINT ... RENAME

20 years agoAdd:
Bruce Momjian [Fri, 5 Sep 2003 00:50:40 +0000 (00:50 +0000)]
Add:

<
> * Print table names with constraint names in error messages, or make constraint
>   names unique within a schema

20 years agoReimplement hash index locking algorithms, per my recent proposal to
Tom Lane [Thu, 4 Sep 2003 22:06:27 +0000 (22:06 +0000)]
Reimplement hash index locking algorithms, per my recent proposal to
pghackers.  This fixes the problem recently reported by Markus KrÌutner
(hash bucket split corrupts the state of scans being done concurrently),
and I believe it also fixes all the known problems with deadlocks in
hash index operations.  Hash indexes are still not really ready for prime
time (since they aren't WAL-logged), but this is a step forward.

20 years agoAvoid consuming unreasonable amounts of memory when GRANT has many
Tom Lane [Thu, 4 Sep 2003 15:53:04 +0000 (15:53 +0000)]
Avoid consuming unreasonable amounts of memory when GRANT has many
grantees.

20 years agoLooks like plperl has same bug as pltcl.
Tom Lane [Thu, 4 Sep 2003 15:16:39 +0000 (15:16 +0000)]
Looks like plperl has same bug as pltcl.

20 years agoFix some problems with dropped columns in pltcl functions.
Tom Lane [Thu, 4 Sep 2003 15:10:10 +0000 (15:10 +0000)]
Fix some problems with dropped columns in pltcl functions.

20 years agoAllow non-super users to set log_duration to true, then false, when the
Bruce Momjian [Thu, 4 Sep 2003 05:11:20 +0000 (05:11 +0000)]
Allow non-super users to set log_duration to true, then false, when the
administrator has not turned it on, and fix other PGC_USERLIMIT
variables.

20 years agoRe-upper case CHECKPOINT_SEGMENTS.
Bruce Momjian [Thu, 4 Sep 2003 03:38:55 +0000 (03:38 +0000)]
Re-upper case CHECKPOINT_SEGMENTS.

20 years agoLowercase CHECKPOINT_SEGMENTS.
Bruce Momjian [Thu, 4 Sep 2003 00:36:46 +0000 (00:36 +0000)]
Lowercase CHECKPOINT_SEGMENTS.

20 years agoAdd:
Bruce Momjian [Wed, 3 Sep 2003 23:01:47 +0000 (23:01 +0000)]
Add:

> * Allow to_char to print localized month names (Karel)

20 years agoTighten casting of function call pointers for threads.
Bruce Momjian [Wed, 3 Sep 2003 22:34:08 +0000 (22:34 +0000)]
Tighten casting of function call pointers for threads.

20 years agoAdd note that a for loop where the lower bound is greater than the upper
Peter Eisentraut [Wed, 3 Sep 2003 22:17:07 +0000 (22:17 +0000)]
Add note that a for loop where the lower bound is greater than the upper
bound is valid but does nothing.

suggested by Richard Huxton <dev@archonet.com>

20 years agoPass session_authorization to the client and make psql update its prompt
Peter Eisentraut [Wed, 3 Sep 2003 22:05:09 +0000 (22:05 +0000)]
Pass session_authorization to the client and make psql update its prompt
accordingly.

20 years agoDone:
Bruce Momjian [Wed, 3 Sep 2003 21:27:21 +0000 (21:27 +0000)]
Done:

* -Have standalone backend read postgresql.conf (Tom)

20 years agoMark unixware as verified.
Bruce Momjian [Wed, 3 Sep 2003 20:54:21 +0000 (20:54 +0000)]
Mark unixware as verified.

20 years agoAdd Unixware as verified.
Bruce Momjian [Wed, 3 Sep 2003 20:51:40 +0000 (20:51 +0000)]
Add Unixware as verified.

20 years agoUpdate German FAQ.
Bruce Momjian [Wed, 3 Sep 2003 20:28:14 +0000 (20:28 +0000)]
Update German FAQ.

Ian Barwick

20 years agoMark BSD/OS as verified not needing reentrant function names.
Bruce Momjian [Wed, 3 Sep 2003 19:40:56 +0000 (19:40 +0000)]
Mark BSD/OS as verified not needing reentrant function names.

20 years agoAdd reporting of specificy threading failure functions.
Bruce Momjian [Wed, 3 Sep 2003 19:36:31 +0000 (19:36 +0000)]
Add reporting of specificy threading failure functions.

20 years agoAdd test for thread-safeness of libc functions.
Bruce Momjian [Wed, 3 Sep 2003 19:30:31 +0000 (19:30 +0000)]
Add test for thread-safeness of libc functions.

20 years agoMark Unixware as not requiring *_r functions.
Bruce Momjian [Wed, 3 Sep 2003 17:55:43 +0000 (17:55 +0000)]
Mark Unixware as not requiring *_r functions.

20 years agoWork around ENOTEMPTY being an alias for EEXIST on some platforms.
Tom Lane [Wed, 3 Sep 2003 15:49:42 +0000 (15:49 +0000)]
Work around ENOTEMPTY being an alias for EEXIST on some platforms.

20 years agoRepair problems with to_char() overrunning its input string.
Tom Lane [Wed, 3 Sep 2003 14:59:41 +0000 (14:59 +0000)]
Repair problems with to_char() overrunning its input string.
From Karel Zak.

20 years agoIn _bt_check_unique() loop, don't bother applying _bt_isequal() to
Tom Lane [Tue, 2 Sep 2003 22:10:16 +0000 (22:10 +0000)]
In _bt_check_unique() loop, don't bother applying _bt_isequal() to
killed items; just skip to the next item immediately.  Only check for
key equality when we reach a non-killed item or the end of the index
page.  This saves key comparisons when there are lots of killed items,
as for example in a heavily-updated table that's not been vacuumed lately.
Seems to be a win for pgbench anyway.

20 years agoRemove outdated CLI things.
Peter Eisentraut [Tue, 2 Sep 2003 21:45:37 +0000 (21:45 +0000)]
Remove outdated CLI things.

20 years agoCause standalone backend (including bootstrap case) to read the GUC
Tom Lane [Tue, 2 Sep 2003 19:04:12 +0000 (19:04 +0000)]
Cause standalone backend (including bootstrap case) to read the GUC
config file if it exists.  This was already discussed as being a good
idea, and now seems the cleanest way to deal with initdb-time failures
on machines with small SHMMAX.  (The submitted patches instead modified
initdb.sh to pass the correct sizing parameters, but that would still
leave standalone backends prone to failure later.  An admin who needs
to use a standalone backend has enough trouble already, he shouldn't
have to manually configure its shmem settings...)

20 years agoSeveral fixes for hash indexes that involve changing the on-disk index
Tom Lane [Tue, 2 Sep 2003 18:13:32 +0000 (18:13 +0000)]
Several fixes for hash indexes that involve changing the on-disk index
layout; therefore, this change forces REINDEX of hash indexes (though
not a full initdb).  Widen hashm_ntuples to double so that hash space
management doesn't get confused by more than 4G entries; enlarge the
allowed number of free-space-bitmap pages; replace the useless bshift
field with a useful bmshift field; eliminate 4 bytes of wasted space
in the per-page special area.

20 years agoFix a couple typos, add some more comments.
Tom Lane [Tue, 2 Sep 2003 03:29:01 +0000 (03:29 +0000)]
Fix a couple typos, add some more comments.

20 years agoRewrite hashbulkdelete() to make it amenable to new bucket locking
Tom Lane [Tue, 2 Sep 2003 02:18:38 +0000 (02:18 +0000)]
Rewrite hashbulkdelete() to make it amenable to new bucket locking
scheme.  A pleasant side effect is that it is *much* faster when deleting
a large fraction of the indexed tuples, because of elimination of
redundant hash_step activity induced by hash_adjscans.  Various other
continuing code cleanup.

20 years agoDo not pass server_encoding to the client.
Peter Eisentraut [Mon, 1 Sep 2003 23:04:49 +0000 (23:04 +0000)]
Do not pass server_encoding to the client.

libpq, talking to an old server, should assume SQL_ASCII as the default
client encoding, because that is what the server will actually use (not
the server encoding).

20 years agoClean up after pygresql removal: adjust/remove documentation and remove
Peter Eisentraut [Mon, 1 Sep 2003 23:01:49 +0000 (23:01 +0000)]
Clean up after pygresql removal: adjust/remove documentation and remove
unneeded configure work.

20 years agoPreliminary cleanup for hash index code (doesn't attack the locking problem
Tom Lane [Mon, 1 Sep 2003 20:26:34 +0000 (20:26 +0000)]
Preliminary cleanup for hash index code (doesn't attack the locking problem
yet).  Fix a couple of bugs that would only appear if multiple bitmap pages
are used, including a buffer reference leak and incorrect computation of bit
indexes.  Get rid of 'overflow address' concept, which accomplished nothing
except obfuscating the code and creating a risk of failure due to limited
range of offset field.  Rename some misleadingly-named fields and routines,
and improve documentation.

20 years agoAdd some internals documentation for hash indexes, including an
Tom Lane [Mon, 1 Sep 2003 20:24:49 +0000 (20:24 +0000)]
Add some internals documentation for hash indexes, including an
explanation of the remarkably confusing page addressing scheme.
The file also includes my planned-but-not-yet-implemented revision
of the hash index locking scheme.

20 years agoAdd mention of OID wraparound.
Bruce Momjian [Mon, 1 Sep 2003 16:47:58 +0000 (16:47 +0000)]
Add mention of OID wraparound.

20 years agoFixed two bugs in pgtypes library.
Michael Meskes [Mon, 1 Sep 2003 12:37:40 +0000 (12:37 +0000)]
Fixed two bugs in pgtypes library.

20 years agoRename DoIt to changeVar, for clarity.
Bruce Momjian [Mon, 1 Sep 2003 04:15:51 +0000 (04:15 +0000)]
Rename DoIt to changeVar, for clarity.

20 years agoTranslation update
Peter Eisentraut [Sun, 31 Aug 2003 17:38:06 +0000 (17:38 +0000)]
Translation update

20 years agoAdd/edit index entries.
Peter Eisentraut [Sun, 31 Aug 2003 17:32:24 +0000 (17:32 +0000)]
Add/edit index entries.

20 years agoSet LC_ALL=C when running collateindex.pl to get predictable sort order.
Peter Eisentraut [Sun, 31 Aug 2003 17:28:39 +0000 (17:28 +0000)]
Set LC_ALL=C when running collateindex.pl to get predictable sort order.

20 years agoGuard against pgindent changing =- to = -.
Bruce Momjian [Sat, 30 Aug 2003 14:59:34 +0000 (14:59 +0000)]
Guard against pgindent changing =- to = -.

20 years agoFix unixware template --- had spaces around equals.
Bruce Momjian [Sat, 30 Aug 2003 03:19:47 +0000 (03:19 +0000)]
Fix unixware template --- had spaces around equals.

20 years agoMake documentation of pg_restore's -N, -o, -r switches bear some
Tom Lane [Thu, 28 Aug 2003 20:44:02 +0000 (20:44 +0000)]
Make documentation of pg_restore's -N, -o, -r switches bear some
slight resemblance to their actual behavior.

20 years agopg_dump and pg_restore -r had managed to diverge on the ordering of
Tom Lane [Thu, 28 Aug 2003 20:21:34 +0000 (20:21 +0000)]
pg_dump and pg_restore -r had managed to diverge on the ordering of
different object types.  Fix, and centralize logic to try to prevent
the same mistake in future.

20 years agoEnsure that FK constraints are dumped after primary/unique constraints,
Tom Lane [Thu, 28 Aug 2003 18:59:06 +0000 (18:59 +0000)]
Ensure that FK constraints are dumped after primary/unique constraints,
rather than relying on OID order of pg_constraint entries.  Per gripe
from Greg Stark.

20 years agoFix stupid typo (mine I suppose) in CopyGetData. Per report from Dave Cramer.
Tom Lane [Thu, 28 Aug 2003 13:52:34 +0000 (13:52 +0000)]
Fix stupid typo (mine I suppose) in CopyGetData.  Per report from Dave Cramer.

20 years agoMore accuracy works with stopwords in queries
Teodor Sigaev [Thu, 28 Aug 2003 12:23:24 +0000 (12:23 +0000)]
More accuracy works with stopwords in queries

20 years agoAdjust date/time input parsing code to correctly distinguish the four
Tom Lane [Wed, 27 Aug 2003 23:29:29 +0000 (23:29 +0000)]
Adjust date/time input parsing code to correctly distinguish the four
SQLSTATE error codes required by SQL99 (invalid format, datetime field
overflow, interval field overflow, invalid time zone displacement value).
Also emit a HINT about DateStyle in cases where it seems appropriate.
Per recent gripes.

20 years agoAdd "override" for make variable JADEFLAGS, since upper directory passes
Peter Eisentraut [Wed, 27 Aug 2003 22:58:54 +0000 (22:58 +0000)]
Add "override" for make variable JADEFLAGS, since upper directory passes
this variable on the command line.

20 years agoMajor cleanup of SPI chapter
Peter Eisentraut [Wed, 27 Aug 2003 22:13:35 +0000 (22:13 +0000)]
Major cleanup of SPI chapter

20 years agoDepartment of second thoughts: can't reorder merge-join clauses.
Tom Lane [Wed, 27 Aug 2003 12:44:12 +0000 (12:44 +0000)]
Department of second thoughts: can't reorder merge-join clauses.

20 years agoUpdate URL for 7.3 changes:
Bruce Momjian [Wed, 27 Aug 2003 03:35:35 +0000 (03:35 +0000)]
Update URL for 7.3 changes:

http://developer.postgresql.org/~momjian/upgrade_tips_7.3

20 years agoupdate to beta2
PostgreSQL Daemon [Wed, 27 Aug 2003 02:35:38 +0000 (02:35 +0000)]
update to beta2

20 years agoShare PG_DIAG_* macros between client and server and use them internally.
Peter Eisentraut [Wed, 27 Aug 2003 00:33:34 +0000 (00:33 +0000)]
Share PG_DIAG_* macros between client and server and use them internally.

20 years agoPush subplan clauses to the back in qual lists for join plans, not
Tom Lane [Tue, 26 Aug 2003 22:56:51 +0000 (22:56 +0000)]
Push subplan clauses to the back in qual lists for join plans, not
only scan plans.  Per observation from Rod Taylor.

20 years agoCall it Linux, not GNU/Linux.
Bruce Momjian [Tue, 26 Aug 2003 21:31:11 +0000 (21:31 +0000)]
Call it Linux, not GNU/Linux.

20 years agoUse separate SQLSTATE codes for file not found/file exists, rather than
Tom Lane [Tue, 26 Aug 2003 21:15:27 +0000 (21:15 +0000)]
Use separate SQLSTATE codes for file not found/file exists, rather than
lumping them into ERRCODE_UNDEFINED_OBJECT/ERRCODE_DUPLICATE_OBJECT.
This seems reasonable since 'object' was meant to refer to 'object in the
database' and a file is outside the database.  Per request from Dave
Cramer.

20 years agopsql's HISTSIZE from .psqlrc do not want to be set so I did it for psql
Bruce Momjian [Tue, 26 Aug 2003 18:35:31 +0000 (18:35 +0000)]
psql's HISTSIZE from .psqlrc do not want to be set so I did it for psql
that HISTSIZE might take effect from my .psqlrc

Andriy Tkachuk

20 years agoThis patch adds a new regression test for the UPDATE command. Right
Bruce Momjian [Tue, 26 Aug 2003 18:32:23 +0000 (18:32 +0000)]
This patch adds a new regression test for the UPDATE command. Right
now all that is tested is Rod Taylor's recent addition to allow
this syntax:

    UPDATE ... SET <col> = DEFAULT;

If anyone else would like to add more UPDATE tests, go ahead --
I just wanted to write a test for the above functionality, and
couldn't see an existing test that it would be appropriate
to add to.

Neil Conway

20 years agoFixed connect statement with username in variable.
Michael Meskes [Tue, 26 Aug 2003 16:09:02 +0000 (16:09 +0000)]
Fixed connect statement with username in variable.

20 years agoAttached is a (very small) patch to make analyze display some
Bruce Momjian [Tue, 26 Aug 2003 15:38:42 +0000 (15:38 +0000)]
Attached is a (very small) patch to make analyze display some
interesting info in verbose mode about the analyzed relation (pages,
rows per block and rows).

Mark Kirkwood

20 years agoMop-up for previous change to determine default shared_buffers and
Tom Lane [Tue, 26 Aug 2003 15:38:25 +0000 (15:38 +0000)]
Mop-up for previous change to determine default shared_buffers and
max_connections at initdb time.  Get rid of DEF_NBUFFERS and DEF_MAXBACKENDS
macros, which aren't doing anything useful anymore, and put more likely
defaults into postgresql.conf.sample.

20 years agofix module name in MODULE_PATHNAME substitution
Teodor Sigaev [Tue, 26 Aug 2003 10:01:02 +0000 (10:01 +0000)]
fix module name in MODULE_PATHNAME substitution

20 years agoAttempt to fix setMaxFieldSize() logic that was checked in yesterday.
Barry Lind [Tue, 26 Aug 2003 06:50:39 +0000 (06:50 +0000)]
Attempt to fix setMaxFieldSize() logic that was checked in yesterday.
I think this should fix the problem, but since I don't have a reproducable test
case, I can't be sure.  This problem is reported by Kim Ho of redhat, who will
test this fix.  This also includes a test case for the original functionality.

 Modified Files:
  jdbc/org/postgresql/jdbc1/AbstractJdbc1Statement.java
  jdbc/org/postgresql/test/jdbc2/ResultSetTest.java

20 years agoAdd the Brazilian time zone abbreviations BRT, BRST, FNT, FNST.
Tom Lane [Mon, 25 Aug 2003 23:30:27 +0000 (23:30 +0000)]
Add the Brazilian time zone abbreviations BRT, BRST, FNT, FNST.
ACT and ACST were already present.  AMT and AMST conflict with the
existing entries for Armenia; no change there for the moment.

20 years agoAllow parsing of time and timetz inputs to accept the documented input
Tom Lane [Mon, 25 Aug 2003 22:47:34 +0000 (22:47 +0000)]
Allow parsing of time and timetz inputs to accept the documented input
syntax '040506' for '04:05:06', as well as '0405' for '04:05:00'.  This
has been broken since 7.2 but was only recently complained of.

20 years agoTranslation updates
Peter Eisentraut [Mon, 25 Aug 2003 21:29:53 +0000 (21:29 +0000)]
Translation updates

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.