OSDN Git Service

pg-rex/syncrep.git
14 years agoAdd connection messages for streaming replication. log_connections
Simon Riggs [Fri, 19 Mar 2010 19:19:38 +0000 (19:19 +0000)]
Add connection messages for streaming replication. log_connections
was broken for a replication connection and no messages were
displayed on either standby or primary, at any debug level.
Connection messages needed to diagnose session drop/reconnect
events. Use LOG mode for now, discuss lowering in later releases.

14 years agoMinor tweaks on libpqrcv_connect(): ensure conninfo_repl[] is
Simon Riggs [Fri, 19 Mar 2010 17:51:42 +0000 (17:51 +0000)]
Minor tweaks on libpqrcv_connect(): ensure conninfo_repl[] is
correctly sized and expand comment to explain otherwise
undocumented use of replication connection parameter.

14 years agoUpdate XLOG_PAGE_MAGIC to recognise WAL format changes.
Simon Riggs [Fri, 19 Mar 2010 17:42:10 +0000 (17:42 +0000)]
Update XLOG_PAGE_MAGIC to recognise WAL format changes.

14 years agoAdjust comment in .history file to match recovery target specified. Comment
Simon Riggs [Fri, 19 Mar 2010 11:05:15 +0000 (11:05 +0000)]
Adjust comment in .history file to match recovery target specified. Comment
present since 8.0 was never fully meaningful, since two recovery targets
cannot be specified. Refactor recovery target type to make this change
and associated code easier to understand. No change in function.

Bug report arising from internal support question.

14 years agoReset btpo.xact following recovery of btree delete page. Add btpo_xact
Simon Riggs [Fri, 19 Mar 2010 10:41:22 +0000 (10:41 +0000)]
Reset btpo.xact following recovery of btree delete page. Add btpo_xact
field into WAL record and reset it from there, rather than using
FrozenTransactionId which can lead to some corner case bugs.

Problem report and suggested route to a fix from Heikki, details by me.

14 years agoAlso print the libpq error message when lo_create or lo_open fails
Peter Eisentraut [Thu, 18 Mar 2010 20:00:51 +0000 (20:00 +0000)]
Also print the libpq error message when lo_create or lo_open fails

14 years agoPrevent the injection of invalidly encoded strings by PL/Python into PostgreSQL
Peter Eisentraut [Thu, 18 Mar 2010 19:43:03 +0000 (19:43 +0000)]
Prevent the injection of invalidly encoded strings by PL/Python into PostgreSQL
with a few strategically placed pg_verifymbstr calls.

14 years agoMessage style tuning
Peter Eisentraut [Thu, 18 Mar 2010 19:02:46 +0000 (19:02 +0000)]
Message style tuning

14 years agoMention way to get commit details for release notes.
Bruce Momjian [Thu, 18 Mar 2010 16:31:12 +0000 (16:31 +0000)]
Mention way to get commit details for release notes.

14 years agoFix missing parentheses for current_query(), per bug #5378.
Tom Lane [Thu, 18 Mar 2010 15:29:44 +0000 (15:29 +0000)]
Fix missing parentheses for current_query(), per bug #5378.
Also make a couple other minor editorial improvements.

14 years agoUse data-type specific conversion functions also in plpy.execute
Peter Eisentraut [Thu, 18 Mar 2010 13:23:57 +0000 (13:23 +0000)]
Use data-type specific conversion functions also in plpy.execute

In PLy_spi_execute_plan, use the data-type specific Python-to-PostgreSQL
conversion function instead of passing everything through InputFunctionCall
as a string.  The equivalent fix was already done months ago for function
parameters and return values, but this other gateway between Python and
PostgreSQL was apparently forgotten.  As a result, data types that need
special treatment, such as bytea, would misbehave when used with
plpy.execute.

14 years agoAdd restartpoint_command option to recovery.conf. Fix bug in %r handling
Heikki Linnakangas [Thu, 18 Mar 2010 09:17:18 +0000 (09:17 +0000)]
Add restartpoint_command option to recovery.conf. Fix bug in %r handling
in recovery_end_command, it always came out as 0 because InRedo was
cleared before recovery_end_command was executed. Also, always take
ControlFileLock when reading checkpoint location for %r.

The recovery_end_command bug and the missing locking was present in 8.4
as well, that part of this patch will be backported separately.

14 years agoAdd vacuum_defer_cleanup_age to postgresql.conf.sample.
Simon Riggs [Thu, 18 Mar 2010 07:01:01 +0000 (07:01 +0000)]
Add vacuum_defer_cleanup_age to postgresql.conf.sample.

14 years agoDon't link PL/Python against LOCALMODLIBS
Peter Eisentraut [Wed, 17 Mar 2010 22:02:44 +0000 (22:02 +0000)]
Don't link PL/Python against LOCALMODLIBS

This variable is apparently only for Python internally.  In newer releases
of Python this variable pulls in more and more libraries that users are
less likely to have, leading to potential build failures.

14 years agoMessage style tuning
Peter Eisentraut [Wed, 17 Mar 2010 21:31:17 +0000 (21:31 +0000)]
Message style tuning

14 years agoFix peculiar, untranslatable message concatenation attempt
Peter Eisentraut [Wed, 17 Mar 2010 20:58:38 +0000 (20:58 +0000)]
Fix peculiar, untranslatable message concatenation attempt

14 years agoMake typography consistent
Peter Eisentraut [Wed, 17 Mar 2010 20:53:19 +0000 (20:53 +0000)]
Make typography consistent

14 years agoTypo fixes.
Magnus Hagander [Wed, 17 Mar 2010 18:03:55 +0000 (18:03 +0000)]
Typo fixes.

Fujii Masao

14 years agoUpdate broken and permanently moved links
Peter Eisentraut [Wed, 17 Mar 2010 17:12:31 +0000 (17:12 +0000)]
Update broken and permanently moved links

14 years agoPass incompletely-transformed aggregate argument lists as separate parameters
Tom Lane [Wed, 17 Mar 2010 16:52:38 +0000 (16:52 +0000)]
Pass incompletely-transformed aggregate argument lists as separate parameters
to transformAggregateCall, instead of abusing fields in Aggref to carry them
temporarily.  No change in functionality but hopefully the code is a bit
clearer now.  Per gripe from Gokulakannan Somasundaram.

14 years agoFix incorrect example in CREATE INDEX reference page, per Josh Kupershmidt.
Tom Lane [Wed, 17 Mar 2010 15:55:50 +0000 (15:55 +0000)]
Fix incorrect example in CREATE INDEX reference page, per Josh Kupershmidt.
Also fix and uncomment an old example of creating a GIST index, and make
a couple of other minor editorial adjustments.

14 years agoFix typo in streaming replication protocol docs.
Simon Riggs [Wed, 17 Mar 2010 00:28:15 +0000 (00:28 +0000)]
Fix typo in streaming replication protocol docs.

14 years agoFix typo in math function docs, spotted by Heikki.
Simon Riggs [Tue, 16 Mar 2010 16:03:24 +0000 (16:03 +0000)]
Fix typo in math function docs, spotted by Heikki.

14 years agoThrow a nicer error message if a standby server attempts to connect while
Heikki Linnakangas [Tue, 16 Mar 2010 09:09:55 +0000 (09:09 +0000)]
Throw a nicer error message if a standby server attempts to connect while
the master is still in recovery. We don't support cascading slaves yet.

Patch by Fujii Masao, with slightly changed wording.

14 years agoDocument that trig functions accept/return values in radians.
Simon Riggs [Mon, 15 Mar 2010 19:03:31 +0000 (19:03 +0000)]
Document that trig functions accept/return values in radians.

14 years agoRemove incorrect comment from GetWriteRecPtr(): the return value is always
Simon Riggs [Mon, 15 Mar 2010 18:49:17 +0000 (18:49 +0000)]
Remove incorrect comment from GetWriteRecPtr(): the return value is always
correct, as described in comments at start of xlog.c

14 years agoUpdate oidjoins regression test for 9.0.
Tom Lane [Sun, 14 Mar 2010 04:17:54 +0000 (04:17 +0000)]
Update oidjoins regression test for 9.0.

14 years agoAdd some more structure and bits of information to PL/Python documentation
Peter Eisentraut [Sat, 13 Mar 2010 20:55:05 +0000 (20:55 +0000)]
Add some more structure and bits of information to PL/Python documentation

14 years agoRevert all keepalive moves, reevaluate.
Bruce Momjian [Sat, 13 Mar 2010 16:56:37 +0000 (16:56 +0000)]
Revert all keepalive moves, reevaluate.

14 years agoMove more tcp keepalive macros to be consistent.
Bruce Momjian [Sat, 13 Mar 2010 16:40:38 +0000 (16:40 +0000)]
Move more tcp keepalive macros to be consistent.

14 years agoMove TCP keepalive macro definition
Bruce Momjian [Sat, 13 Mar 2010 15:35:46 +0000 (15:35 +0000)]
Move TCP keepalive macro definition

Jaime Casanova

14 years agoAdd libpq warning message if the .pgpass-retrieved password fails.
Bruce Momjian [Sat, 13 Mar 2010 14:55:57 +0000 (14:55 +0000)]
Add libpq warning message if the .pgpass-retrieved password fails.

Add ERRCODE_INVALID_PASSWORD sqlstate error code.

14 years agoUpdate shared memory configuration information for Linux
Peter Eisentraut [Sat, 13 Mar 2010 11:00:19 +0000 (11:00 +0000)]
Update shared memory configuration information for Linux

In particular, the assertion that shmall is sufficiently sized by default
is slowly becoming untrue.

14 years agoDocument what user name email symbols are supported by tsearch.
Bruce Momjian [Sat, 13 Mar 2010 03:09:04 +0000 (03:09 +0000)]
Document what user name email symbols are supported by tsearch.

14 years agoAllow underscores in tsearch email addressses, per RFC 5322 and report
Bruce Momjian [Sat, 13 Mar 2010 00:41:58 +0000 (00:41 +0000)]
Allow underscores in tsearch email addressses, per RFC 5322 and report
by Dan O'Hara.

Patch by Teodor Sigaev

14 years agoSmall adjustment by pgindent.
Bruce Momjian [Sat, 13 Mar 2010 00:40:43 +0000 (00:40 +0000)]
Small adjustment by pgindent.

14 years agoRe-add comma, oops.
Bruce Momjian [Fri, 12 Mar 2010 23:21:48 +0000 (23:21 +0000)]
Re-add comma, oops.

14 years agoAdd some logging code for unexpected cases in pgstat.c, particularly being
Tom Lane [Fri, 12 Mar 2010 22:19:19 +0000 (22:19 +0000)]
Add some logging code for unexpected cases in pgstat.c, particularly being
unable to read a stats file for reasons other than ENOENT, and having to reset
last_statrequest because it's later than current time in the collector.
Not clear if this will shed any light on the "pgstat wait timeout" business,
but it seems like a good idea in general.

In passing, do some message-style-police work on recently-added
pgstat_reset_shared_counters code.

14 years agoFix a commented-out block of code that pgindent didn't understand
Tom Lane [Fri, 12 Mar 2010 21:40:36 +0000 (21:40 +0000)]
Fix a commented-out block of code that pgindent didn't understand
properly; it's been making that comment uglier with each run.

14 years agoRemove unnecessary comma in documentation.
Bruce Momjian [Fri, 12 Mar 2010 17:46:07 +0000 (17:46 +0000)]
Remove unnecessary comma in documentation.

14 years agoAdd missing reset of need_initialization in reloptions code.
Tom Lane [Thu, 11 Mar 2010 21:47:19 +0000 (21:47 +0000)]
Add missing reset of need_initialization in reloptions code.

This resulted in useless extra work during every call of parseRelOptions,
but no bad effects other than that.  Noted by Alvaro.

14 years agoModify psql's \d printout to fold exclusion constraints in with regular
Tom Lane [Thu, 11 Mar 2010 21:29:32 +0000 (21:29 +0000)]
Modify psql's \d printout to fold exclusion constraints in with regular
indexes, rather than printing them twice.  Per my gripe when the exclusion
constraint feature was committed.

14 years agoSync timezone code with tzcode 2010c from the Olson group. This fixes some
Tom Lane [Thu, 11 Mar 2010 18:43:24 +0000 (18:43 +0000)]
Sync timezone code with tzcode 2010c from the Olson group.  This fixes some
corner cases that come up in certain timezones (apparently, only those with
lots and lots of distinct TZ transition rules, as far as I can gather from
a quick scan of their archives).  Per suggestion from Jeevan Chalke.

Back-patch to 8.4.  Possibly we need to push this into earlier releases
as well, but I'm hesitant to update them to the 64-bit tzcode without
more thought and testing.

14 years agoFix bug in KnownAssignedXidsMany(). I saw this when looking at the
Heikki Linnakangas [Thu, 11 Mar 2010 09:26:59 +0000 (09:26 +0000)]
Fix bug in KnownAssignedXidsMany(). I saw this when looking at the
assertion failure reported by Erik Rijkers, but this alone doesn't explain
the failure.

14 years agoFix comment which was apparently copy-pasted from another function.
Heikki Linnakangas [Thu, 11 Mar 2010 09:10:25 +0000 (09:10 +0000)]
Fix comment which was apparently copy-pasted from another function.

14 years agoSimplify a couple of pg_dump and psql \d queries about index constraints
Tom Lane [Thu, 11 Mar 2010 04:36:43 +0000 (04:36 +0000)]
Simplify a couple of pg_dump and psql \d queries about index constraints
by joining to pg_constraint.conindid, instead of the former technique of
joining indirectly through pg_depend.  This is much more straightforward
and probably faster as well.  I had originally desisted from changing these
queries when conindid was added because I was worried about losing
performance, but if we join on conrelid as well as conindid then the index
on conrelid can be used when pg_constraint is large.

14 years agoUpdate comment for pg_constraint.conindid to mention that it's used for
Tom Lane [Thu, 11 Mar 2010 03:36:22 +0000 (03:36 +0000)]
Update comment for pg_constraint.conindid to mention that it's used for
exclusion constraints.  Not sure how we managed to update the comment for
it in catalogs.sgml but miss this one.

14 years agoFix incorrect comment about permissions checking being done in utility.c.
Robert Haas [Wed, 10 Mar 2010 19:48:39 +0000 (19:48 +0000)]
Fix incorrect comment about permissions checking being done in utility.c.

Noted while reviewing a patch from KaiGai Kohei.

14 years agopg_start_backup() can use a share lock to lock ControlFileLock
Itagaki Takahiro [Wed, 10 Mar 2010 02:04:48 +0000 (02:04 +0000)]
pg_start_backup() can use a share lock to lock ControlFileLock
instead of an exclusive lock.

The change is almost for code cleanup. Since there seems to be no
performance benefits from it, backports should not be needed.

Fujii Masao

14 years agoPreliminary release notes for releases 8.4.3, 8.3.10, 8.2.16, 8.1.20, 8.0.24,
Tom Lane [Wed, 10 Mar 2010 01:58:11 +0000 (01:58 +0000)]
Preliminary release notes for releases 8.4.3, 8.3.10, 8.2.16, 8.1.20, 8.0.24,
7.4.28.

14 years agoUse SvROK(sv) rather than directly checking SvTYPE(sv) == SVt_RV in plperl.
Tom Lane [Tue, 9 Mar 2010 22:34:38 +0000 (22:34 +0000)]
Use SvROK(sv) rather than directly checking SvTYPE(sv) == SVt_RV in plperl.
The latter is considered unwarranted chumminess with the implementation,
and can lead to crashes with recent Perl versions.

Report and fix by Tim Bunce.  Back-patch to all versions containing the
questionable coding pattern.

14 years agoUpdate time zone data files to tzdata release 2010d: DST law changes in Fiji,
Alvaro Herrera [Tue, 9 Mar 2010 14:27:28 +0000 (14:27 +0000)]
Update time zone data files to tzdata release 2010d: DST law changes in Fiji,
Samoa, Chile; corrections to recent changes in Paraguay and Bangladesh.

14 years agoecpg now adds a unique counter to its varchar struct definitions to make these defini...
Michael Meskes [Tue, 9 Mar 2010 11:09:46 +0000 (11:09 +0000)]
ecpg now adds a unique counter to its varchar struct definitions to make these definitions unique, too. It used to use the linenumber but in the rare case of two definitions in one line this was not unique.

14 years agoAdd checks for valid encoding of query strings passed to SPI by plperl.
Andrew Dunstan [Tue, 9 Mar 2010 02:48:33 +0000 (02:48 +0000)]
Add checks for valid encoding of query strings passed to SPI by plperl.

14 years agoReturn proper exit code (3) from psql when ON_ERROR_STOP=on and
Bruce Momjian [Mon, 8 Mar 2010 23:03:00 +0000 (23:03 +0000)]
Return proper exit code (3) from psql when ON_ERROR_STOP=on and
--single-transaction are both used and the failure happens in commit,
e.g. failed deferred trigger.  Also properly free BEGIN/COMMIT result
structures from --single-transaction.

Per report from Dominic Bevacqua

14 years agoAdd missing space in example.
Magnus Hagander [Mon, 8 Mar 2010 12:38:37 +0000 (12:38 +0000)]
Add missing space in example.

Tim Landscheidt

14 years agoBetter test the content of the SQLSTATE string in ecpglib than the pointer.
Michael Meskes [Mon, 8 Mar 2010 12:15:24 +0000 (12:15 +0000)]
Better test the content of the SQLSTATE string in ecpglib than the pointer.

14 years agoRequire hostname to be set when using GSSAPI authentication. Without it,
Magnus Hagander [Mon, 8 Mar 2010 10:01:12 +0000 (10:01 +0000)]
Require hostname to be set when using GSSAPI authentication. Without it,
the GSSAPI libraries crash.

Noted by Zdenek Kotala

14 years agoDisallow gssapi authentication on local connections, since it
Magnus Hagander [Mon, 8 Mar 2010 09:57:26 +0000 (09:57 +0000)]
Disallow gssapi authentication on local connections, since it
requires a hostname to function.

Noted by Zdenek Kotala

14 years agoUpdate time zone data files to tzdata release 2010c: DST law changes in
Tom Lane [Mon, 8 Mar 2010 01:18:09 +0000 (01:18 +0000)]
Update time zone data files to tzdata release 2010c: DST law changes in
Bangladesh, Mexico, Paraguay.

14 years agoRevert patch for --psqlrc=FILENAME in psql.
Magnus Hagander [Sun, 7 Mar 2010 17:02:34 +0000 (17:02 +0000)]
Revert patch for --psqlrc=FILENAME in psql.

14 years agoFix warning messages in restrict_and_check_grant() to include the column name
Tom Lane [Sat, 6 Mar 2010 23:10:42 +0000 (23:10 +0000)]
Fix warning messages in restrict_and_check_grant() to include the column name
when warning about column-level privileges.  This is more useful than before
and makes the apparent duplication complained of by Piyush Newe not so
duplicate.  Also fix lack of quote marks in a related message text.

Back-patch to 8.4, where column-level privileges were introduced.

Stephen Frost

14 years agoAdd --psqlrc=FILENAME parameter to psql, to process an explicitly named
Magnus Hagander [Sat, 6 Mar 2010 15:28:09 +0000 (15:28 +0000)]
Add --psqlrc=FILENAME parameter to psql, to process an explicitly named
file instead of ~/.psqlrc on startup.

14 years agoWhen reading pg_hba.conf and similar files, do not treat @file as an inclusion
Tom Lane [Sat, 6 Mar 2010 00:45:49 +0000 (00:45 +0000)]
When reading pg_hba.conf and similar files, do not treat @file as an inclusion
unless (1) the @ isn't quoted and (2) the filename isn't empty.  This guards
against unexpectedly treating usernames or other strings in "flat files"
as inclusion requests, as seen in a recent trouble report from Ed L.
The empty-filename case would be guaranteed to misbehave anyway, because our
subsequent path-munging behavior results in trying to read the directory
containing the current input file.

I think this might finally explain the report at
http://archives.postgresql.org/pgsql-bugs/2004-05/msg00132.php
of a crash after printing "authentication file token too long, skipping",
since I was able to duplicate that message (though not a crash) on a
platform where stdio doesn't refuse to read directories.  We never got
far in investigating that problem, but now I'm suspicious that the trigger
condition was an @ in the flat password file.

Back-patch to all active branches since the problem can be demonstrated in all
branches except HEAD.  The test case, creating a user named "@", doesn't cause
a problem in HEAD since we got rid of the flat password file.  Nonetheless it
seems like a good idea to not consider quoted @ as a file inclusion spec,
so I changed HEAD too.

14 years agoIn case the connection magically disappears libecpg only returns an internal
Michael Meskes [Fri, 5 Mar 2010 13:57:09 +0000 (13:57 +0000)]
In case the connection magically disappears libecpg only returns an internal
error sqlstate. This change makes it return a correct value..

14 years agoFix IsBinaryCoercible to not confuse a cast using in/out functions
Heikki Linnakangas [Thu, 4 Mar 2010 09:39:53 +0000 (09:39 +0000)]
Fix IsBinaryCoercible to not confuse a cast using in/out functions
with binary compatibility.

Backpatch to 8.4 where INOUT casts were introduced.

14 years agoAdd C comment about DDL changes possibly causing pg_dump errors.
Bruce Momjian [Wed, 3 Mar 2010 23:38:44 +0000 (23:38 +0000)]
Add C comment about DDL changes possibly causing pg_dump errors.

14 years agoDocument that "Q" is ignored by to_date and to_timestamp. Add C comment
Bruce Momjian [Wed, 3 Mar 2010 22:28:42 +0000 (22:28 +0000)]
Document that "Q" is ignored by to_date and to_timestamp.  Add C comment
about the behavior.

Document that quotes in to_date, to_timestamp, to_number skip input
characters.

14 years agoFix a couple of places that would loop forever if attempts to read a stdio file
Tom Lane [Wed, 3 Mar 2010 20:31:09 +0000 (20:31 +0000)]
Fix a couple of places that would loop forever if attempts to read a stdio file
set ferror() but never set feof().  This is known to be the case for recent
glibc when trying to read a directory as a file, and might be true for other
platforms/cases too.  Per report from Ed L.  (There is more that we ought to
do about his report, but this is one easily identifiable issue.)

14 years agoFix pg_dump of ACLs of foreign servers. The command to grant/revoke
Heikki Linnakangas [Wed, 3 Mar 2010 20:10:48 +0000 (20:10 +0000)]
Fix pg_dump of ACLs of foreign servers. The command to grant/revoke
privileges of foreign servers is "GRANT ... ON *FOREIGN* SERVER ...".

14 years agoMake contrib/xml2 use core xml.c's error handler, when available (that is,
Tom Lane [Wed, 3 Mar 2010 19:10:22 +0000 (19:10 +0000)]
Make contrib/xml2 use core xml.c's error handler, when available (that is,
in versions >= 8.3).  The core code is more robust and efficient than what
was there before, and this also reduces risks involved in swapping different
libxml error handler settings.

Before 8.3, there is still some risk of problems if add-on modules such as
Perl invoke libxml without setting their own error handler.  Given the lack
of reports I'm not sure there's a risk in practice, so I didn't take the
step of actually duplicating the core code into older contrib/xml2 branches.
Instead I just tweaked the existing code to ensure it didn't leave a dangling
pointer to short-lived memory when throwing an error.

14 years agoExport xml.c's libxml-error-handling support so that contrib/xml2 can use it
Tom Lane [Wed, 3 Mar 2010 17:29:45 +0000 (17:29 +0000)]
Export xml.c's libxml-error-handling support so that contrib/xml2 can use it
too, instead of duplicating the functionality (badly).

I renamed xml_init to pg_xml_init, because the former seemed just a bit too
generic to be safe as a global symbol.  I considered likewise renaming
xml_ereport to pg_xml_ereport, but felt that the reference to ereport probably
made it sufficiently PG-centric already.

14 years agoMake iconv work like other optional libraries for MSVC.
Andrew Dunstan [Wed, 3 Mar 2010 03:29:37 +0000 (03:29 +0000)]
Make iconv work like other optional libraries for MSVC.

14 years agoFix SGML markup.
Bruce Momjian [Wed, 3 Mar 2010 03:23:12 +0000 (03:23 +0000)]
Fix SGML markup.

14 years agoRestructure CREATE FUNCTION "NOTES" section to be shorter; move items
Bruce Momjian [Wed, 3 Mar 2010 03:14:08 +0000 (03:14 +0000)]
Restructure CREATE FUNCTION "NOTES" section to be shorter;  move items
into proper sections, per suggestion from Tom.

14 years agoInstead of trying (and failing) to allow <<label>> at the end of a DECLARE
Tom Lane [Wed, 3 Mar 2010 01:53:17 +0000 (01:53 +0000)]
Instead of trying (and failing) to allow <<label>> at the end of a DECLARE
section, throw an error message saying explicitly that the label must go
before DECLARE.  Per investigation of a recent pgsql-novice question,
this code did not work as intended in any modern PG version, maybe not ever.
Allowing such a thing would only create ambiguity anyway, so it seems better
to remove it than fix it.

14 years agoAdjust max_standby_delay documentation to be clearer, and mention that
Bruce Momjian [Tue, 2 Mar 2010 23:38:17 +0000 (23:38 +0000)]
Adjust max_standby_delay documentation to be clearer, and mention that
two adjacent long-running queries have much less than max_standby_delay
before query cancel is possible.

14 years agoAdd missing library and include dir for XSLT in MSVC builds
Andrew Dunstan [Tue, 2 Mar 2010 22:02:31 +0000 (22:02 +0000)]
Add missing library and include dir for XSLT in MSVC builds

14 years agoDocument the effect of max_standby_delay on increasing the delay of data
Bruce Momjian [Tue, 2 Mar 2010 21:18:59 +0000 (21:18 +0000)]
Document the effect of max_standby_delay on increasing the delay of data
from master to slave, and discourage its use during slave/master
keep-xid-alive connections.

14 years agoUpdate keywords list for 9.0
Peter Eisentraut [Tue, 2 Mar 2010 20:40:48 +0000 (20:40 +0000)]
Update keywords list for 9.0

14 years agoDo not run regression tests for contrib/xml2 on MSVC unless building with XML
Andrew Dunstan [Tue, 2 Mar 2010 17:06:51 +0000 (17:06 +0000)]
Do not run regression tests for contrib/xml2 on MSVC unless building with XML

14 years agoCause plpgsql to throw an error if "INTO rowtype_var" is followed by a comma.
Tom Lane [Tue, 2 Mar 2010 16:14:39 +0000 (16:14 +0000)]
Cause plpgsql to throw an error if "INTO rowtype_var" is followed by a comma.
Per bug #5352, this helps to provide a useful error message if the user
tries to do something presently unsupported, namely use a rowtype variable
as a member of a multiple-item INTO list.

14 years agoAdd XSLT defines for MSVC builds
Andrew Dunstan [Tue, 2 Mar 2010 12:29:14 +0000 (12:29 +0000)]
Add XSLT defines for MSVC builds

14 years agoFix translation of strings in psql \d output (translation in headers worked,
Heikki Linnakangas [Mon, 1 Mar 2010 21:27:26 +0000 (21:27 +0000)]
Fix translation of strings in psql \d output (translation in headers worked,
but not in cells).

14 years agoFix numericlocale psql option when used with a null string and latex and troff
Heikki Linnakangas [Mon, 1 Mar 2010 20:55:45 +0000 (20:55 +0000)]
Fix numericlocale psql option when used with a null string and latex and troff
formats; a null string must not be formatted as a numeric. The more exotic
formats latex and troff also incorrectly formatted all strings as numerics
when numericlocale was on.

Backpatch to 8.1 where numericlocale option was added.

This fixes bug #5355 reported by Andy Lester.

14 years agoFix contrib/xml2 so regression test still works when it's built without libxslt.
Tom Lane [Mon, 1 Mar 2010 18:07:59 +0000 (18:07 +0000)]
Fix contrib/xml2 so regression test still works when it's built without libxslt.

This involves modifying the module to have a stable ABI, that is, the
xslt_process() function still exists even without libxslt.  It throws a
runtime error if called, but doesn't prevent executing the CREATE FUNCTION
call.  This is a good thing anyway to simplify cross-version upgrades.

14 years agoIt's clearly now pointless to do backwards compatible parsing of this,
Magnus Hagander [Mon, 1 Mar 2010 16:02:01 +0000 (16:02 +0000)]
It's clearly now pointless to do backwards compatible parsing of this,
since we released a version without it, so remove the comment that
says we might want to do that.

14 years agoBuildfarm still unhappy, so I'll bet it's EACCES not EPERM.
Tom Lane [Mon, 1 Mar 2010 14:54:00 +0000 (14:54 +0000)]
Buildfarm still unhappy, so I'll bet it's EACCES not EPERM.

14 years agoRemove xmlCleanupParser calls from contrib/xml2.
Tom Lane [Mon, 1 Mar 2010 05:16:35 +0000 (05:16 +0000)]
Remove xmlCleanupParser calls from contrib/xml2.

These are unnecessary and probably dangerous.  I don't see any immediate
risk situations in the core XML support or contrib/xml2 itself, but there
could be issues with external uses of libxml2, and in any case it's an
accident waiting to happen.

14 years agoadd EPERM to the list of return codes to expect from opening directories based on...
Greg Stark [Mon, 1 Mar 2010 00:04:06 +0000 (00:04 +0000)]
add EPERM to the list of return codes to expect from opening directories based on Vista results

14 years agoFix up memory management problems in contrib/xml2.
Tom Lane [Sun, 28 Feb 2010 21:31:57 +0000 (21:31 +0000)]
Fix up memory management problems in contrib/xml2.

Get rid of the code that attempted to funnel libxml2's memory allocations
into palloc.   We already knew from experience with the core xml datatype
that trying to do this is simply not reliable.  Unlike the core code, I
did not bother adding a lot of PG_TRY/PG_CATCH logic to try to ensure that
everything is cleaned up on error exit.  Hence, we might leak some memory
if one of these functions fails partway through.  Given the deprecated
status of this contrib module and the fact that errors partway through
the functions shouldn't be too common, it doesn't seem worth worrying about.

Also fix a separate bug in xpath_table, that it did the wrong things
if given a result tuple descriptor with less than 2 columns.  While
such a case isn't very useful in practice, we shouldn't fail or stomp
memory when it occurs.

Add some simple regression tests based on all the reported crash cases
that I have on hand.

This should be back-patched, but let's see if the buildfarm likes it first.

14 years agoSecond try at fsyncing directories in CREATE DATABASE. Let's see what the build farm...
Greg Stark [Sun, 28 Feb 2010 21:05:30 +0000 (21:05 +0000)]
Second try at fsyncing directories in CREATE DATABASE. Let's see what the build farm says of opening directories read-only and ignoring EBADF from fsync of directories

14 years agoAssorted code cleanup for contrib/xml2. No change in functionality,
Tom Lane [Sun, 28 Feb 2010 19:51:37 +0000 (19:51 +0000)]
Assorted code cleanup for contrib/xml2.  No change in functionality,
just make it a bit less ugly in places.

14 years agoUpdate complex locale example in the documentation.
Bruce Momjian [Sun, 28 Feb 2010 02:20:40 +0000 (02:20 +0000)]
Update complex locale example in the documentation.

14 years ago*** empty log message ***
Bruce Momjian [Sun, 28 Feb 2010 02:19:47 +0000 (02:19 +0000)]
*** empty log message ***

14 years agoMake sure ecpg uses the same header files in the same order as the backend.
Michael Meskes [Sat, 27 Feb 2010 21:56:16 +0000 (21:56 +0000)]
Make sure ecpg uses the same header files in the same order as the backend.

14 years agoInsert a hack into get_float8_nan (both core and ecpg copies) to deal with
Tom Lane [Sat, 27 Feb 2010 21:53:21 +0000 (21:53 +0000)]
Insert a hack into get_float8_nan (both core and ecpg copies) to deal with
the fact that NetBSD/mips is currently broken, as per buildfarm member pika.

Also add regression tests to ensure that get_float8_nan and get_float4_nan
are exercised even on platforms where they are not needed by
float8in/float4in.

Zoltán Böszörményi and Tom Lane

14 years agoBack out unintended change to pg_locale.c.
Bruce Momjian [Sat, 27 Feb 2010 20:20:44 +0000 (20:20 +0000)]
Back out unintended change to pg_locale.c.

14 years agoDocument ATAPI FLUSH CACHE EXT.
Bruce Momjian [Sat, 27 Feb 2010 20:16:17 +0000 (20:16 +0000)]
Document ATAPI FLUSH CACHE EXT.

14 years agoDocument trace_recovery_messages() parameter as an enum, not string.
Bruce Momjian [Sat, 27 Feb 2010 14:46:05 +0000 (14:46 +0000)]
Document trace_recovery_messages() parameter as an enum, not string.

Fujii Masao