OSDN Git Service

pg-rex/syncrep.git
19 years agoRemove contrib/pg_logger, per recent discussion.
Tom Lane [Thu, 16 Sep 2004 21:20:20 +0000 (21:20 +0000)]
Remove contrib/pg_logger, per recent discussion.

19 years agoRemove erroneous Assert, per example from Kris Jurka.
Tom Lane [Thu, 16 Sep 2004 21:08:12 +0000 (21:08 +0000)]
Remove erroneous Assert, per example from Kris Jurka.

19 years agoAdd some marginal tweaks to eliminate memory leakages associated with
Tom Lane [Thu, 16 Sep 2004 20:17:49 +0000 (20:17 +0000)]
Add some marginal tweaks to eliminate memory leakages associated with
subtransactions.  Trivial subxacts (such as a plpgsql exception block
containing no database access) now demonstrably leak zero bytes.

19 years agoRecentXmin is too recent to use as the cutoff point for accessing
Tom Lane [Thu, 16 Sep 2004 18:35:23 +0000 (18:35 +0000)]
RecentXmin is too recent to use as the cutoff point for accessing
pg_subtrans --- what we need is the oldest xmin of any snapshot in use
in the current top transaction.  Introduce a new variable TransactionXmin
to play this role.  Fixes intermittent regression failure reported by
Neil Conway.

19 years agoRestructure subtransaction handling to reduce resource consumption,
Tom Lane [Thu, 16 Sep 2004 16:58:44 +0000 (16:58 +0000)]
Restructure subtransaction handling to reduce resource consumption,
as per recent discussions.  Invent SubTransactionIds that are managed like
CommandIds (ie, counter is reset at start of each top transaction), and
use these instead of TransactionIds to keep track of subtransaction status
in those modules that need it.  This means that a subtransaction does not
need an XID unless it actually inserts/modifies rows in the database.
Accordingly, don't assign it an XID nor take a lock on the XID until it
tries to do that.  This saves a lot of overhead for subtransactions that
are only used for error recovery (eg plpgsql exceptions).  Also, arrange
to release a subtransaction's XID lock as soon as the subtransaction
exits, in both the commit and abort cases.  This avoids holding many
unique locks after a long series of subtransactions.  The price is some
additional overhead in XactLockTableWait, but that seems acceptable.
Finally, restructure the state machine in xact.c to have a more orthogonal
set of states for subtransactions.

19 years agoMinor doc tweak: mention that function names can be optionally schema-
Neil Conway [Thu, 16 Sep 2004 04:16:08 +0000 (04:16 +0000)]
Minor doc tweak: mention that function names can be optionally schema-
qualified.

19 years agoFix a read of uninitialized memory in array_out(). Perform some minor
Neil Conway [Thu, 16 Sep 2004 03:15:54 +0000 (03:15 +0000)]
Fix a read of uninitialized memory in array_out(). Perform some minor
cosmetic code cleanup at the same time.

19 years agoCosmetic PL/PgSQL fix: declare the second parameter plpgsql_dstring_append
Neil Conway [Tue, 14 Sep 2004 23:46:46 +0000 (23:46 +0000)]
Cosmetic PL/PgSQL fix: declare the second parameter plpgsql_dstring_append
as a const char *, so that we don't need to cast away a const in gram.y

19 years agoMark as done:
Bruce Momjian [Tue, 14 Sep 2004 14:34:45 +0000 (14:34 +0000)]
Mark as done:

< * Point-in-time data recovery using backup and write-ahead log,
< * Create native Win32 port, http://momjian.postgresql.org/main/writings/pgsql/project/win32.html
> * -Point-in-time data recovery using backup and write-ahead log
> * -Create native Win32 port
470c470
<     o Fix PL/pgSQL RENAME to work on variables other than OLD/NEW
>  o Fix PL/pgSQL RENAME to work on variables other than OLD/NEW

19 years agoNew translation
Peter Eisentraut [Tue, 14 Sep 2004 05:50:33 +0000 (05:50 +0000)]
New translation

19 years agoTranslation update
Peter Eisentraut [Tue, 14 Sep 2004 05:44:40 +0000 (05:44 +0000)]
Translation update

19 years agoFix contrib/cube and contrib/seg to compile on Windows.
Tom Lane [Tue, 14 Sep 2004 04:21:38 +0000 (04:21 +0000)]
Fix contrib/cube and contrib/seg to compile on Windows.
Andreas Pflug

19 years agoFix some minor issues with the new Win32 service code for autovacuum,
Tom Lane [Tue, 14 Sep 2004 04:06:20 +0000 (04:06 +0000)]
Fix some minor issues with the new Win32 service code for autovacuum,
and add documentation.  Dave Page

19 years agoAdjust tsearch2.sql to avoid use of COPY FROM STDIN, so as to
Tom Lane [Tue, 14 Sep 2004 03:58:54 +0000 (03:58 +0000)]
Adjust tsearch2.sql to avoid use of COPY FROM STDIN, so as to
simplify life for the Win32 installer.  Per Dave Page.

19 years agoWin32 compile fix for misc_utils.
Tom Lane [Tue, 14 Sep 2004 03:50:17 +0000 (03:50 +0000)]
Win32 compile fix for misc_utils.
Claudio Natoli

19 years agoWin32 compile fixes for pgbench, pgcrypto, and tsearch.
Tom Lane [Tue, 14 Sep 2004 03:39:55 +0000 (03:39 +0000)]
Win32 compile fixes for pgbench, pgcrypto, and tsearch.
Claudio Natoli

19 years agoFix contrib/dbase to compile under Win32. Laurent Ballester
Tom Lane [Tue, 14 Sep 2004 03:28:28 +0000 (03:28 +0000)]
Fix contrib/dbase to compile under Win32.  Laurent Ballester

19 years agoMake pltcl work on Win32. Magnus Hagander
Tom Lane [Tue, 14 Sep 2004 03:21:27 +0000 (03:21 +0000)]
Make pltcl work on Win32.  Magnus Hagander

19 years agoFix small memory leak in psql.
Neil Conway [Mon, 13 Sep 2004 23:07:12 +0000 (23:07 +0000)]
Fix small memory leak in psql.

19 years agoTranslation update
Peter Eisentraut [Mon, 13 Sep 2004 20:53:10 +0000 (20:53 +0000)]
Translation update

19 years agoRedesign query-snapshot timing so that volatile functions in READ COMMITTED
Tom Lane [Mon, 13 Sep 2004 20:10:13 +0000 (20:10 +0000)]
Redesign query-snapshot timing so that volatile functions in READ COMMITTED
mode see a fresh snapshot for each command in the function, rather than
using the latest interactive command's snapshot.  Also, suppress fresh
snapshots as well as CommandCounterIncrement inside STABLE and IMMUTABLE
functions, instead using the snapshot taken for the most closely nested
regular query.  (This behavior is only sane for read-only functions, so
the patch also enforces that such functions contain only SELECT commands.)
As per my proposal of 6-Sep-2004; I note that I floated essentially the
same proposal on 19-Jun-2002, but that discussion tailed off without any
action.  Since 8.0 seems like the right place to be taking possibly
nontrivial backwards compatibility hits, let's get it done now.

19 years agoTranslation updates
Peter Eisentraut [Mon, 13 Sep 2004 12:43:27 +0000 (12:43 +0000)]
Translation updates

19 years agoTranslation updates
Peter Eisentraut [Mon, 13 Sep 2004 12:35:18 +0000 (12:35 +0000)]
Translation updates

19 years agoNew translations
Peter Eisentraut [Mon, 13 Sep 2004 12:20:24 +0000 (12:20 +0000)]
New translations

19 years agoNew translation
Peter Eisentraut [Mon, 13 Sep 2004 12:14:50 +0000 (12:14 +0000)]
New translation

19 years agoTranslation updates
Peter Eisentraut [Mon, 13 Sep 2004 12:11:22 +0000 (12:11 +0000)]
Translation updates

19 years agoFix two typos in comments.
Neil Conway [Mon, 13 Sep 2004 01:45:32 +0000 (01:45 +0000)]
Fix two typos in comments.

19 years agoRe-add brace removal code but comment it out so we know why we removed
Bruce Momjian [Sun, 12 Sep 2004 22:21:30 +0000 (22:21 +0000)]
Re-add brace removal code but comment it out so we know why we removed
it and have it in case we need it for some special case.

19 years agoRemove code that delete braces around single statements.
Bruce Momjian [Sun, 12 Sep 2004 22:11:27 +0000 (22:11 +0000)]
Remove code that delete braces around single statements.

19 years agoWhen LockAcquire fails at the stage of creating a proclock object, be
Tom Lane [Sun, 12 Sep 2004 18:30:50 +0000 (18:30 +0000)]
When LockAcquire fails at the stage of creating a proclock object, be
sure to clean up the already-created lock object, if it has no other
references.  Avoids possibly-permanent leak of shared memory.

19 years agoRenumber SnapshotNow and the other special snapshot codes so that
Tom Lane [Sat, 11 Sep 2004 18:28:34 +0000 (18:28 +0000)]
Renumber SnapshotNow and the other special snapshot codes so that
((Snapshot) NULL) can no longer be confused with a valid snapshot,
as per my recent suggestion.  Define a macro InvalidSnapshot for 0.
Use InvalidSnapshot instead of SnapshotAny as the do-nothing special
case for heap_update and heap_delete crosschecks; this seems a little
cleaner even though the behavior is really the same.

19 years agoEnsure that pg_largeobject references opened by lo_import() or lo_export()
Tom Lane [Sat, 11 Sep 2004 15:56:46 +0000 (15:56 +0000)]
Ensure that pg_largeobject references opened by lo_import() or lo_export()
will be cleaned up at end of transaction, even when there is no other LO
operation in the transaction.  Per bug report from Daniel Schuchardt.

19 years agoSend thread test output to file descriptor 5 like configure does rather
Bruce Momjian [Sat, 11 Sep 2004 02:12:17 +0000 (02:12 +0000)]
Send thread test output to file descriptor 5 like configure does rather
than /dev/null, which Win32 doesn't have.

19 years agoCheck for ignored thread compiler options to reduce compiler noise.
Bruce Momjian [Sat, 11 Sep 2004 00:03:06 +0000 (00:03 +0000)]
Check for ignored thread compiler options to reduce compiler noise.

19 years agoDone:
Bruce Momjian [Fri, 10 Sep 2004 22:38:52 +0000 (22:38 +0000)]
Done:

< * Have AFTER triggers execute after the appropriate SQL statement in a
> * -Have AFTER triggers execute after the appropriate SQL statement in a

19 years agoFix some problems with restoring databases owned by non-superusers,
Tom Lane [Fri, 10 Sep 2004 20:05:18 +0000 (20:05 +0000)]
Fix some problems with restoring databases owned by non-superusers,
as per bug #1249; and remove the last vestiges of using \connect to
change authorization.

19 years agoFire non-deferred AFTER triggers immediately upon query completion,
Tom Lane [Fri, 10 Sep 2004 18:40:09 +0000 (18:40 +0000)]
Fire non-deferred AFTER triggers immediately upon query completion,
rather than when returning to the idle loop.  This makes no particular
difference for interactively-issued queries, but it makes a big difference
for queries issued within functions: trigger execution now occurs before
the calling function is allowed to proceed.  This responds to numerous
complaints about nonintuitive behavior of foreign key checking, such as
http://archives.postgresql.org/pgsql-bugs/2004-09/msg00020.php, and
appears to be required by the SQL99 spec.
Also take the opportunity to simplify the data structures used for the
pending-trigger list, rename them for more clarity, and squeeze out a
bit of space.

19 years agoAdd:
Bruce Momjian [Fri, 10 Sep 2004 16:35:56 +0000 (16:35 +0000)]
Add:

> * Make row-wise comparisons work per SQL spec
>

19 years agoFix #if define
Bruce Momjian [Fri, 10 Sep 2004 15:51:47 +0000 (15:51 +0000)]
Fix #if define

19 years agoFix palloc call from /port for Cygwin.
Bruce Momjian [Fri, 10 Sep 2004 15:23:51 +0000 (15:23 +0000)]
Fix palloc call from /port for Cygwin.

19 years agoProperly include port file for Cygwin.
Bruce Momjian [Fri, 10 Sep 2004 15:20:19 +0000 (15:20 +0000)]
Properly include port file for Cygwin.

19 years agoMinor cleanup.
Bruce Momjian [Fri, 10 Sep 2004 14:27:37 +0000 (14:27 +0000)]
Minor cleanup.

19 years agoMore cleanup.
Bruce Momjian [Fri, 10 Sep 2004 14:24:25 +0000 (14:24 +0000)]
More cleanup.

19 years agoUse $PORTNAME consistently instead of $host_os, where appropriate.
Bruce Momjian [Fri, 10 Sep 2004 13:53:40 +0000 (13:53 +0000)]
Use $PORTNAME consistently instead of $host_os, where appropriate.

19 years agoAdd:
Bruce Momjian [Fri, 10 Sep 2004 10:03:41 +0000 (10:03 +0000)]
Add:

> * Remove Win32 rename/unlink looping if unnecessary

19 years agoAdd mention loops over unlink/rename might not be needed.
Bruce Momjian [Fri, 10 Sep 2004 09:58:21 +0000 (09:58 +0000)]
Add mention loops over unlink/rename might not be needed.

19 years agoMove undef of rename/unlink so system declarations are unmodified.
Bruce Momjian [Fri, 10 Sep 2004 09:53:08 +0000 (09:53 +0000)]
Move undef of rename/unlink so system declarations are unmodified.

19 years agoAdjust quotes for win32 build of psql.
Bruce Momjian [Fri, 10 Sep 2004 09:45:21 +0000 (09:45 +0000)]
Adjust quotes for win32 build of psql.

19 years agoFix two typos in comments.
Neil Conway [Fri, 10 Sep 2004 04:36:42 +0000 (04:36 +0000)]
Fix two typos in comments.

19 years agoApply patch from Steven Singer for contrib/dbmirror. Changes:
Neil Conway [Fri, 10 Sep 2004 04:31:06 +0000 (04:31 +0000)]
Apply patch from Steven Singer for contrib/dbmirror. Changes:

-It fixes up some bugs with handling setval calls
-Adds upgrade instructions from prior versions
-Improved the sample config file
-Fixed some things in the clean_pending script

19 years agopsql consistency fixes from Greg Sabino Mullane: have \df show schema and
Neil Conway [Fri, 10 Sep 2004 04:10:53 +0000 (04:10 +0000)]
psql consistency fixes from Greg Sabino Mullane: have \df show schema and
name first, make sure \di+ shows description last, and make \dl SQL look
a little more standard.

19 years agoCreate pg_config_paths in port/ for win32 builds of psql.
Bruce Momjian [Fri, 10 Sep 2004 03:48:54 +0000 (03:48 +0000)]
Create pg_config_paths in port/ for win32 builds of psql.

19 years agoClean up Cygwin test.
Bruce Momjian [Fri, 10 Sep 2004 02:49:37 +0000 (02:49 +0000)]
Clean up Cygwin test.

19 years agoMove TIMEZONE_GLOBAL out into the proper place.
Bruce Momjian [Thu, 9 Sep 2004 14:18:20 +0000 (14:18 +0000)]
Move TIMEZONE_GLOBAL out into the proper place.

19 years agoWe don't use java in our compiles anymore so remove the filter test from
Bruce Momjian [Thu, 9 Sep 2004 09:57:23 +0000 (09:57 +0000)]
We don't use java in our compiles anymore so remove the filter test from
pgtest.

19 years agoAdded a call to gettext() to fix broken translated error messages.
Dennis Bjorklund [Thu, 9 Sep 2004 06:56:48 +0000 (06:56 +0000)]
Added a call to gettext() to fix broken translated error messages.

19 years agoTranslation updates
Dennis Bjorklund [Thu, 9 Sep 2004 06:46:57 +0000 (06:46 +0000)]
Translation updates

19 years agoSome source files was not scanned for translatable strings.
Dennis Bjorklund [Thu, 9 Sep 2004 06:32:13 +0000 (06:32 +0000)]
Some source files was not scanned for translatable strings.

19 years agoTranslation updates
Dennis Bjorklund [Thu, 9 Sep 2004 06:02:39 +0000 (06:02 +0000)]
Translation updates

19 years agoFix Cygwin defines to be consistent.
Bruce Momjian [Thu, 9 Sep 2004 00:59:49 +0000 (00:59 +0000)]
Fix Cygwin defines to be consistent.

19 years agoMake TZNAME_GLOBAL for reference to tzname global variable.
Bruce Momjian [Thu, 9 Sep 2004 00:24:12 +0000 (00:24 +0000)]
Make TZNAME_GLOBAL for reference to tzname global variable.

19 years agoMinor efficiency improvements in keeping track of trigger deferred
Tom Lane [Wed, 8 Sep 2004 23:47:58 +0000 (23:47 +0000)]
Minor efficiency improvements in keeping track of trigger deferred
status.  In particular, I see no reason for deferredTriggerCheckState
to make an explicit entry to note that a particular trigger has its
default state --- that just clutters a list that should normally be
empty or very short.  I have plans to revise this module much more
heavily, but this is a simple separable improvement.

19 years agoClarify description of SET CONSTRAINTS. Point out that it is still
Tom Lane [Wed, 8 Sep 2004 20:47:37 +0000 (20:47 +0000)]
Clarify description of SET CONSTRAINTS.  Point out that it is still
missing the ability to schema-qualify constraint names.

19 years agoUse _timezone global on Cygwin instead of timezone.
Bruce Momjian [Wed, 8 Sep 2004 19:43:12 +0000 (19:43 +0000)]
Use _timezone global on Cygwin instead of timezone.

19 years agoImprove README with mention of new functions.
Bruce Momjian [Wed, 8 Sep 2004 19:35:33 +0000 (19:35 +0000)]
Improve README with mention of new functions.

19 years agoFix a couple of small errors in trigger-list management, as per recent
Tom Lane [Tue, 7 Sep 2004 21:48:30 +0000 (21:48 +0000)]
Fix a couple of small errors in trigger-list management, as per recent
discussion.

19 years agoFix places where WaitForxxx can block, to eliminate failure to detect
Tom Lane [Tue, 7 Sep 2004 14:31:42 +0000 (14:31 +0000)]
Fix places where WaitForxxx can block, to eliminate failure to detect
deadlock on Win32.  Magnus Hagander

19 years agoFix error in Windows version of CHECK_FOR_INTERRUPTS macro.
Tom Lane [Mon, 6 Sep 2004 23:55:34 +0000 (23:55 +0000)]
Fix error in Windows version of CHECK_FOR_INTERRUPTS macro.
This prevented statement_timeout from working.
Magnus Hagander

19 years agoFix a number of places where brittle data structures or overly strong
Tom Lane [Mon, 6 Sep 2004 23:33:48 +0000 (23:33 +0000)]
Fix a number of places where brittle data structures or overly strong
Asserts would lead to a server core dump if an error occurred while
trying to abort a failed subtransaction (thereby leading to re-execution
of whatever parts of AbortSubTransaction had already run).  This of course
does not prevent such an error from creating an infinite loop, but at
least we don't make the situation worse.  Responds to an open item on
the subtransactions to-do list.

19 years agoGuard against transaction control statements in SQL functions. This
Tom Lane [Mon, 6 Sep 2004 18:10:38 +0000 (18:10 +0000)]
Guard against transaction control statements in SQL functions.  This
never worked, but it particularly doesn't work now.

19 years agoFix incorrect ordering of smgr cleanup relative to buffer pin cleanup
Tom Lane [Mon, 6 Sep 2004 17:56:33 +0000 (17:56 +0000)]
Fix incorrect ordering of smgr cleanup relative to buffer pin cleanup
during transaction abort.  Add a regression test case to catch related
mistakes in future.  Alvaro Herrera and Tom Lane.

19 years agoI can't see any good reason for DropRelFileNodeBuffers to be issuing
Tom Lane [Mon, 6 Sep 2004 17:31:32 +0000 (17:31 +0000)]
I can't see any good reason for DropRelFileNodeBuffers to be issuing
FATAL when it detects a nonzero reference count.  Reduce to ERROR.

19 years agoFixed segfault in Informix mode.
Michael Meskes [Mon, 6 Sep 2004 11:23:07 +0000 (11:23 +0000)]
Fixed segfault in Informix mode.

19 years agoDowngrade LOG messages to DEBUG1 for normal recycling of xlog, clog,
Tom Lane [Mon, 6 Sep 2004 03:04:27 +0000 (03:04 +0000)]
Downgrade LOG messages to DEBUG1 for normal recycling of xlog, clog,
subtrans segments.  Per Greg Mullane and Chris K-L.

19 years agoSimplify IsXactIsoLevelSerializable test. A cycle saved is a cycle
Tom Lane [Sun, 5 Sep 2004 23:01:26 +0000 (23:01 +0000)]
Simplify IsXactIsoLevelSerializable test.  A cycle saved is a cycle
earned ...

19 years agoOn further consideration, there's another problem here: the existing
Tom Lane [Sun, 5 Sep 2004 03:42:13 +0000 (03:42 +0000)]
On further consideration, there's another problem here: the existing
elog() emulation code always calls errstart with ERROR error level.
This means that a recursive error call triggered by elog would do
MemoryContextReset(ErrorContext), whether or not this was actually
appropriate.  I'm surprised we haven't seen this in the field...

19 years agoTweak elog.c's logic for promoting errors into more severe errors.
Tom Lane [Sun, 5 Sep 2004 02:01:41 +0000 (02:01 +0000)]
Tweak elog.c's logic for promoting errors into more severe errors.
Messages of less than ERROR severity should never be promoted (this
fixes Gaetano Mendola's problem with a COMMERROR becoming a PANIC,
and is obvious in hindsight anyway).  Do all promotion in errstart
not errfinish, to ensure that output decisions are made correctly;
the former coding could suppress logging of promoted errors, which
doesn't seem like a good idea.  Eliminate some redundant code too.

19 years agoFix shared library linking operations to work properly on all (or at
Tom Lane [Thu, 2 Sep 2004 23:06:43 +0000 (23:06 +0000)]
Fix shared library linking operations to work properly on all (or at
least more) combinations of HP-UX hardware, compiler, and linker.
Shinji Teragaito and Tom Lane.

19 years agoApparently HPUX runs the IA64 in big-endian mode.
Tom Lane [Thu, 2 Sep 2004 21:03:30 +0000 (21:03 +0000)]
Apparently HPUX runs the IA64 in big-endian mode.

19 years agoFix ancient declaration inconsistency in cube & seg ... came across a
Tom Lane [Thu, 2 Sep 2004 20:53:42 +0000 (20:53 +0000)]
Fix ancient declaration inconsistency in cube & seg ... came across a
compiler that warns about it.

19 years agoSome versions of lex will drop a lex.yy.c file when we probe to see if
Tom Lane [Thu, 2 Sep 2004 20:39:57 +0000 (20:39 +0000)]
Some versions of lex will drop a lex.yy.c file when we probe to see if
they are flex.  Clean up after them.

19 years agoYet another place where someone was being careless about the arguments
Tom Lane [Thu, 2 Sep 2004 20:07:50 +0000 (20:07 +0000)]
Yet another place where someone was being careless about the arguments
of <ctype.h> macros.

19 years agoSpelling correction, per Greg Mullane.
Tom Lane [Thu, 2 Sep 2004 17:58:41 +0000 (17:58 +0000)]
Spelling correction, per Greg Mullane.

19 years agoFix getrusage() emulation on Windows. Magnus Hagander
Tom Lane [Thu, 2 Sep 2004 17:55:16 +0000 (17:55 +0000)]
Fix getrusage() emulation on Windows.  Magnus Hagander

19 years agoFAQ_HPUX updates from Shinji Teragaito.
Tom Lane [Thu, 2 Sep 2004 17:46:24 +0000 (17:46 +0000)]
FAQ_HPUX updates from Shinji Teragaito.

19 years agoCope with recent HPUX versions providing isfinite() instead of finite().
Tom Lane [Thu, 2 Sep 2004 17:12:50 +0000 (17:12 +0000)]
Cope with recent HPUX versions providing isfinite() instead of finite().

19 years agoAdd s_lock support for HPUX on IA64, per Shinji Teragaito.
Tom Lane [Thu, 2 Sep 2004 17:10:58 +0000 (17:10 +0000)]
Add s_lock support for HPUX on IA64, per Shinji Teragaito.

19 years agoRemove useless variable.
Tom Lane [Thu, 2 Sep 2004 16:42:00 +0000 (16:42 +0000)]
Remove useless variable.

19 years agoUse $PATH_SEPARATOR like the rest of the autoconf code, instead of
Tom Lane [Thu, 2 Sep 2004 15:39:56 +0000 (15:39 +0000)]
Use $PATH_SEPARATOR like the rest of the autoconf code, instead of
hardwiring IFS=: when searching paths.

19 years agoRemove line specifying Andreas as author.
Bruce Momjian [Thu, 2 Sep 2004 04:04:04 +0000 (04:04 +0000)]
Remove line specifying Andreas as author.

19 years agoRemove pg_config_paths.h from libpq *.mak builds so later MinGW builds
Bruce Momjian [Thu, 2 Sep 2004 02:02:02 +0000 (02:02 +0000)]
Remove pg_config_paths.h from libpq *.mak builds so later MinGW builds
will succeed.

19 years agoAdd:
Bruce Momjian [Thu, 2 Sep 2004 01:18:46 +0000 (01:18 +0000)]
Add:

> * Consider using hash buckets to do DISTINCT, rather than sorting
>
>   This would be beneficial when there are few distinct values.

19 years agoBack out timezone detection patch. Tom already applied it.
Bruce Momjian [Thu, 2 Sep 2004 01:15:06 +0000 (01:15 +0000)]
Back out timezone detection patch.  Tom already applied it.

19 years agoThis patch attempts to fix the issue with localized timezones on
Bruce Momjian [Thu, 2 Sep 2004 01:03:59 +0000 (01:03 +0000)]
This patch attempts to fix the issue with localized timezones on
Windows.

Recap: When running on a localized windows version, the timezone name
returned is also localized, and therefor does not match our lookup
table.

Solution: The registry contains both the name of the timezone in english
and the localized name. The patch adds code to scan the registry for the
localized name and gets the english name from that, and then rescans the
table.

I have tested this on a Swedish WinXP, and it works without problems.
The registry layout is the same in Win2k, but I haven't specifically
tested it. It's also the same on different languages but again only
Swedish is tested.

Magnus Hagander

19 years agoThe current implementation of dbsize doesn't handle tables in
Bruce Momjian [Thu, 2 Sep 2004 00:55:22 +0000 (00:55 +0000)]
The current implementation of dbsize doesn't handle tables in
tablespaces correctly, and is quite restricted on objects covered (only
tables and databases, but not tablespaces and indexes).

The attached patch contributes:

- database_size(name)
- relation_size(text)
These are the well-known functions, tablespace-aware.

- pg_tablespace_size(oid)
- pg_database_size(oid)
- pg_relation_size(oid)
Tablespace-aware implementations, used by the upper functions.
pg_relation_size will report sizes of indexes as well.

- pg_size_pretty(bigint)
Formatting of sizes, to display '146MB' instead of '152885668'

Andreas Pflug

19 years agoRemove obsolete comment.
Tom Lane [Thu, 2 Sep 2004 00:22:16 +0000 (00:22 +0000)]
Remove obsolete comment.

19 years agoTweak prettyprinting rules for saner indenting of UNION, INTERSECT,
Tom Lane [Wed, 1 Sep 2004 23:58:38 +0000 (23:58 +0000)]
Tweak prettyprinting rules for saner indenting of UNION, INTERSECT,
EXCEPT constructs.

19 years agoFix bcc to compile libpq by creating include file for path.c.
Bruce Momjian [Wed, 1 Sep 2004 23:45:16 +0000 (23:45 +0000)]
Fix bcc to compile libpq by creating include file for path.c.

19 years agoRealign libpq and psql for need for path.c under Win32 VC and BCC.
Bruce Momjian [Wed, 1 Sep 2004 23:35:16 +0000 (23:35 +0000)]
Realign libpq and psql for need for path.c under Win32 VC and BCC.

19 years agoBack out Cygwin timezone change until we have a more global solution.
Bruce Momjian [Wed, 1 Sep 2004 18:59:35 +0000 (18:59 +0000)]
Back out Cygwin timezone change until we have a more global solution.