]> granicus.if.org Git - postgresql/log
postgresql
17 years agoRemove reference to contrib/mac, which isn't there anymore.
Tom Lane [Sat, 9 Sep 2006 18:45:37 +0000 (18:45 +0000)]
Remove reference to contrib/mac, which isn't there anymore.

17 years agoAdd contrib/isn module for ISBN/ISSN/EAN13/etc product numbers, and
Tom Lane [Sat, 9 Sep 2006 04:07:52 +0000 (04:07 +0000)]
Add contrib/isn module for ISBN/ISSN/EAN13/etc product numbers, and
remove the old isbn_issn module which is about to be obsoleted by EAN13.
contrib/isn is by Germán Méndez Bravo.  Our thanks to Garrett A. Wollman
for having written the original isbn_issn module.

17 years agoRevise OpenLDAP configuration and linking to work on more platforms
Tom Lane [Sat, 9 Sep 2006 03:15:40 +0000 (03:15 +0000)]
Revise OpenLDAP configuration and linking to work on more platforms
than before.  Albe Laurenz (but editorialized heavily by me, so if it
doesn't work it's my fault).

17 years agoFix pg_dump for recent change removing separate RULE privilege.
Tom Lane [Fri, 8 Sep 2006 18:05:35 +0000 (18:05 +0000)]
Fix pg_dump for recent change removing separate RULE privilege.
I had thought this code could be left alone, but I was wrong: as-is
it's failing to recognize when to use ALL for table privileges in 8.2.

17 years agoPut back plan-time check for trying to apply SELECT FOR UPDATE/SHARE
Tom Lane [Fri, 8 Sep 2006 17:49:13 +0000 (17:49 +0000)]
Put back plan-time check for trying to apply SELECT FOR UPDATE/SHARE
to a relation on the nullable side of an outer join.  I had removed
this during the outer join planning rewrite a few months ago ... I think
I intended to put it somewhere else, but forgot ...

17 years agoTweak the behavior of log_duration as proposed by Guillaume Smet: rather
Tom Lane [Fri, 8 Sep 2006 15:55:53 +0000 (15:55 +0000)]
Tweak the behavior of log_duration as proposed by Guillaume Smet: rather
than being equivalent to setting log_min_duration_statement to zero, this
option now forces logging of all query durations, but doesn't force logging
of query text.  Also, add duration logging coverage for fastpath function
calls.

17 years agoNot all C compilers understand the "//" comment in this test case, so I removed it.
Michael Meskes [Fri, 8 Sep 2006 14:58:27 +0000 (14:58 +0000)]
Not all C compilers understand the "//" comment in this test case, so I removed it.

17 years agoReplaced complex tests with small ones.
Michael Meskes [Fri, 8 Sep 2006 13:32:29 +0000 (13:32 +0000)]
Replaced complex tests with small ones.

17 years agoMore logic from complex/test* moved to their own testcases.
Michael Meskes [Fri, 8 Sep 2006 09:03:40 +0000 (09:03 +0000)]
More logic from complex/test* moved to their own testcases.

17 years agoClean up logging for extended-query-protocol operations, as per my recent
Tom Lane [Thu, 7 Sep 2006 22:52:01 +0000 (22:52 +0000)]
Clean up logging for extended-query-protocol operations, as per my recent
proposal.  Parameter logging works even for binary-format parameters, and
logging overhead is avoided when disabled.

log_statement = all output for the src/test/examples/testlibpq3.c example
now looks like

LOG:  statement: execute <unnamed>: SELECT * FROM test1 WHERE t = $1
DETAIL:  parameters: $1 = 'joe''s place'
LOG:  statement: execute <unnamed>: SELECT * FROM test1 WHERE i = $1::int4
DETAIL:  parameters: $1 = '2'

and log_min_duration_statement = 0 results in

LOG:  duration: 2.431 ms  parse <unnamed>: SELECT * FROM test1 WHERE t = $1
LOG:  duration: 2.335 ms  bind <unnamed> to <unnamed>: SELECT * FROM test1 WHERE t = $1
DETAIL:  parameters: $1 = 'joe''s place'
LOG:  duration: 0.394 ms  execute <unnamed>: SELECT * FROM test1 WHERE t = $1
DETAIL:  parameters: $1 = 'joe''s place'
LOG:  duration: 1.251 ms  parse <unnamed>: SELECT * FROM test1 WHERE i = $1::int4
LOG:  duration: 0.566 ms  bind <unnamed> to <unnamed>: SELECT * FROM test1 WHERE i = $1::int4
DETAIL:  parameters: $1 = '2'
LOG:  duration: 0.173 ms  execute <unnamed>: SELECT * FROM test1 WHERE i = $1::int4
DETAIL:  parameters: $1 = '2'

(This example demonstrates the folly of ignoring parse/bind steps for duration
logging purposes, BTW.)

Along the way, create a less ad-hoc mechanism for determining which commands
are logged by log_statement = mod and log_statement = ddl.  The former coding
was actually missing quite a few things that look like ddl to me, and it
did not handle EXECUTE or extended query protocol correctly at all.

This commit does not do anything about the question of whether log_duration
should be removed or made less redundant with log_min_duration_statement.

17 years agoUpdate pgcvslog comments.
Bruce Momjian [Thu, 7 Sep 2006 18:13:56 +0000 (18:13 +0000)]
Update pgcvslog comments.

17 years agoSpecify lo_write() to take a _const_ buffer, to match documentation.
Bruce Momjian [Thu, 7 Sep 2006 15:37:25 +0000 (15:37 +0000)]
Specify lo_write() to take a _const_ buffer, to match documentation.

17 years agoChanging a test case also changes the output that is expected.
Michael Meskes [Thu, 7 Sep 2006 11:18:47 +0000 (11:18 +0000)]
Changing a test case also changes the output that is expected.
Float/Long aliasing doesn't work on all architecures.

17 years agoRemoved one output because integer/double usage differ
Michael Meskes [Thu, 7 Sep 2006 08:15:58 +0000 (08:15 +0000)]
Removed one output because integer/double usage differ

17 years agoHTLM cleanup.
Bruce Momjian [Thu, 7 Sep 2006 00:12:20 +0000 (00:12 +0000)]
HTLM cleanup.

17 years agoUpdate Emacs/vim editor info.
Bruce Momjian [Thu, 7 Sep 2006 00:10:46 +0000 (00:10 +0000)]
Update Emacs/vim editor info.

17 years agoUpdate emacs info for FAQ_DEV.
Bruce Momjian [Thu, 7 Sep 2006 00:08:43 +0000 (00:08 +0000)]
Update emacs info for FAQ_DEV.

Andrew Dunstan

17 years agoAdd XML documentation.
Bruce Momjian [Thu, 7 Sep 2006 00:04:48 +0000 (00:04 +0000)]
Add XML documentation.

17 years agoUpdate tools directory name.
Bruce Momjian [Wed, 6 Sep 2006 22:03:22 +0000 (22:03 +0000)]
Update tools directory name.

17 years agoChange processing of extended-Query mode so that an unnamed statement
Tom Lane [Wed, 6 Sep 2006 20:40:48 +0000 (20:40 +0000)]
Change processing of extended-Query mode so that an unnamed statement
that has parameters is always planned afresh for each Bind command,
treating the parameter values as constants in the planner.  This removes
the performance penalty formerly often paid for using out-of-line
parameters --- with this definition, the planner can do constant folding,
LIKE optimization, etc.  After a suggestion by Andrew@supernews.

17 years agoBe more wary about which LIBS elements to pull into sslinfo link.
Tom Lane [Wed, 6 Sep 2006 18:30:17 +0000 (18:30 +0000)]
Be more wary about which LIBS elements to pull into sslinfo link.
Per buildfarm results.

17 years agoFix compiler warnings on 64-bit boxes: difference between
Teodor Sigaev [Wed, 6 Sep 2006 07:22:14 +0000 (07:22 +0000)]
Fix compiler warnings on 64-bit boxes: difference between
pointers are int64, but warnings are emitted for position info in
error messages in parser, so, just cast it to int32

17 years agoAdd interval division/multiplication regression tests.
Bruce Momjian [Wed, 6 Sep 2006 02:05:41 +0000 (02:05 +0000)]
Add interval division/multiplication regression tests.

Michael Glaesemann

17 years agoFix sslinfo so it builds on Darwin.
Tom Lane [Tue, 5 Sep 2006 23:15:02 +0000 (23:15 +0000)]
Fix sslinfo so it builds on Darwin.

17 years agoSilence compiler warning about signed vs unsigned chars.
Tom Lane [Tue, 5 Sep 2006 23:07:16 +0000 (23:07 +0000)]
Silence compiler warning about signed vs unsigned chars.

17 years agoSilence compiler warnings about incompatible function pointer types.
Tom Lane [Tue, 5 Sep 2006 23:02:28 +0000 (23:02 +0000)]
Silence compiler warnings about incompatible function pointer types.

17 years agoRemove pgcrypto functions that were deprecated and slated for removal.
Tom Lane [Tue, 5 Sep 2006 21:26:48 +0000 (21:26 +0000)]
Remove pgcrypto functions that were deprecated and slated for removal.
Marko Kreen

17 years agoGet rid of the separate RULE privilege for tables: now only a table's owner
Tom Lane [Tue, 5 Sep 2006 21:08:36 +0000 (21:08 +0000)]
Get rid of the separate RULE privilege for tables: now only a table's owner
can create or modify rules for the table.  Do setRuleCheckAsUser() while
loading rules into the relcache, rather than when defining a rule.  This
ensures that permission checks for tables referenced in a rule are done with
respect to the current owner of the rule's table, whereas formerly ALTER TABLE
OWNER would fail to update the permission checking for associated rules.
Removal of separate RULE privilege is needed to prevent various scenarios
in which a grantee of RULE privilege could effectively have any privilege
of the table owner.  For backwards compatibility, GRANT/REVOKE RULE is still
accepted, but it doesn't do anything.  Per discussion here:
http://archives.postgresql.org/pgsql-hackers/2006-04/msg01138.php

17 years agoMake Gen_fmgrtab.sh locale-proof. Per report from Marko Kreen and
Tom Lane [Tue, 5 Sep 2006 19:18:13 +0000 (19:18 +0000)]
Make Gen_fmgrtab.sh locale-proof.  Per report from Marko Kreen and
fix suggestion from Peter.

17 years agoFix markup and license.
Teodor Sigaev [Tue, 5 Sep 2006 18:39:08 +0000 (18:39 +0000)]
Fix markup and license.

17 years agoFix Intel compiler bug. Per discussion
Teodor Sigaev [Tue, 5 Sep 2006 18:25:10 +0000 (18:25 +0000)]
Fix Intel compiler bug. Per  discussion
'GIN FailedAssertions on Itanium2 with Intel compiler' in pgsql-hackers,
http://archives.postgresql.org/pgsql-hackers/2006-08/msg01914.php

17 years agoAdd hstore contrib module.
Teodor Sigaev [Tue, 5 Sep 2006 18:00:58 +0000 (18:00 +0000)]
Add hstore contrib module.
Per discussion
http://archives.postgresql.org/pgsql-hackers/2006-08/msg01409.php

17 years agoRemove contrib modules that have been migrated to pgfoundry: adddepend,
Tom Lane [Tue, 5 Sep 2006 17:20:29 +0000 (17:20 +0000)]
Remove contrib modules that have been migrated to pgfoundry: adddepend,
dbase, dbmirror, fulltextindex, mac, userlock; or abandoned: mSQL-interface,
tips.

17 years agoLost some changes yet again
Michael Meskes [Tue, 5 Sep 2006 12:17:09 +0000 (12:17 +0000)]
Lost some changes yet again

17 years agoStarted to cleanup complex tests.
Michael Meskes [Tue, 5 Sep 2006 12:11:03 +0000 (12:11 +0000)]
Started to cleanup complex tests.
Added some interval checks to regression suite.

17 years agoSynced parser.
Michael Meskes [Tue, 5 Sep 2006 10:00:53 +0000 (10:00 +0000)]
Synced parser.
Fixed ecpglib trying to read one character after end-of-string.
Fixed port number setting in regression suite.

17 years agoRemove GIN documentation
Bruce Momjian [Tue, 5 Sep 2006 03:09:56 +0000 (03:09 +0000)]
Remove GIN documentation

Christopher Kings-Lynne

17 years agoFix imprecision from interval rounding of multiplication/division.
Bruce Momjian [Tue, 5 Sep 2006 01:13:40 +0000 (01:13 +0000)]
Fix imprecision from interval rounding of multiplication/division.

Bruce, Michael Glaesemann

17 years agoUpdate Japanese FAQ.
Bruce Momjian [Tue, 5 Sep 2006 00:13:41 +0000 (00:13 +0000)]
Update Japanese FAQ.

Jun Kuwamura

17 years agoFix information_schema.key_column_usage to show correct value of
Tom Lane [Mon, 4 Sep 2006 23:13:01 +0000 (23:13 +0000)]
Fix information_schema.key_column_usage to show correct value of
position_in_unique_constraint (column newly added per SQL2003).
Greg Mullane

17 years agoBring sslinfo Makefile up to speed for VPATH and pgxs builds.
Tom Lane [Mon, 4 Sep 2006 22:22:36 +0000 (22:22 +0000)]
Bring sslinfo Makefile up to speed for VPATH and pgxs builds.

17 years agoUpdate setseed() documentation.
Bruce Momjian [Mon, 4 Sep 2006 21:47:25 +0000 (21:47 +0000)]
Update setseed() documentation.

17 years agoUpdate LDAP installation wording.
Bruce Momjian [Mon, 4 Sep 2006 21:43:18 +0000 (21:43 +0000)]
Update LDAP installation wording.

Albe Laurenz

17 years agoTrivial patch to double vacuum speed on tables with no indexes (prevent
Bruce Momjian [Mon, 4 Sep 2006 21:40:23 +0000 (21:40 +0000)]
Trivial patch to double vacuum speed on tables with no indexes (prevent
second scan of table).

Gregory Stark

17 years agoAdd MSVC build tools.
Bruce Momjian [Mon, 4 Sep 2006 21:30:40 +0000 (21:30 +0000)]
Add MSVC build tools.

Magnus Hagander

17 years agoDisallow TRUNCATE when there are any pending after-trigger events for
Tom Lane [Mon, 4 Sep 2006 21:15:56 +0000 (21:15 +0000)]
Disallow TRUNCATE when there are any pending after-trigger events for
the target relation(s).  There might be some cases where we could discard
the pending event instead, but for the moment a conservative approach
seems sufficient.  Per report from Markus Schiltknecht and subsequent
discussion.

17 years agoSequences were not being shown due to the use of lowercase 's' instead
Bruce Momjian [Mon, 4 Sep 2006 21:03:18 +0000 (21:03 +0000)]
Sequences were not being shown due to the use of lowercase 's' instead
of 'S', and the views were not checking for table visibility with
regards to temporary tables and sequences.

Greg Sabino Mullane

17 years agoAdd GIN documentation.
Bruce Momjian [Mon, 4 Sep 2006 20:10:53 +0000 (20:10 +0000)]
Add GIN documentation.

Christopher Kings-Lynne

17 years agoMention paremeterized queries do not work with partial indexes.
Bruce Momjian [Mon, 4 Sep 2006 19:58:02 +0000 (19:58 +0000)]
Mention paremeterized queries do not work with partial indexes.

Simon Riggs

17 years agoRemove trailing slash use in ecpg regression script; caused failures on
Bruce Momjian [Mon, 4 Sep 2006 19:36:21 +0000 (19:36 +0000)]
Remove trailing slash use in ecpg regression script; caused failures on
some platforms.

17 years agoChange ILIKE to invoke lower() and then do plain LIKE comparison when
Tom Lane [Mon, 4 Sep 2006 18:32:55 +0000 (18:32 +0000)]
Change ILIKE to invoke lower() and then do plain LIKE comparison when
working in a multibyte encoding.  This fixes the problems exhibited in
bug #1931 and other reports of ILIKE misbehavior in UTF8 encoding.
It's a pretty grotty solution though --- should rethink how to do it
after we install better locale support, someday.

17 years agosslinfo contrib module - information about current SSL certificate
Peter Eisentraut [Mon, 4 Sep 2006 15:07:46 +0000 (15:07 +0000)]
sslinfo contrib module - information about current SSL certificate
Author: Victor Wagner <vitus@cryptocom.ru>

17 years agoAdd missing gettext calls for some SSL errors.
Peter Eisentraut [Mon, 4 Sep 2006 14:57:27 +0000 (14:57 +0000)]
Add missing gettext calls for some SSL errors.

17 years agoUpdate Japanese readme for pgstattuple.
Bruce Momjian [Mon, 4 Sep 2006 03:49:05 +0000 (03:49 +0000)]
Update Japanese readme for pgstattuple.

17 years agoClean up some leftover problems in pgstattuple: remove unwanted and
Tom Lane [Mon, 4 Sep 2006 02:03:04 +0000 (02:03 +0000)]
Clean up some leftover problems in pgstattuple: remove unwanted and
unportable elog(NOTICE) report, fix install/uninstall sequence.
Itagaki Takahiro

17 years agoFix interval input parser so that fractional weeks and months are
Tom Lane [Mon, 4 Sep 2006 01:26:28 +0000 (01:26 +0000)]
Fix interval input parser so that fractional weeks and months are
cascaded first to days and only what is leftover into seconds.  This
seems to satisfy the principle of least surprise given the general
conversion to three-part interval values --- it was an oversight that
these cases weren't dealt with in 8.1.  Michael Glaesemann

17 years agoCode review for UPDATE SET (columnlist) patch. Make it handle as much
Tom Lane [Sun, 3 Sep 2006 22:37:06 +0000 (22:37 +0000)]
Code review for UPDATE SET (columnlist) patch.  Make it handle as much
of the syntax as this fundamentally dead-end approach can, in particular
combinations of single and multi column assignments.  Improve rather
inadequate documentation and provide some regression tests.

17 years agoRemove duplicated index entry.
Tom Lane [Sun, 3 Sep 2006 22:23:58 +0000 (22:23 +0000)]
Remove duplicated index entry.

17 years agoFix broken markup.
Tom Lane [Sun, 3 Sep 2006 22:15:32 +0000 (22:15 +0000)]
Fix broken markup.

17 years agoSuppress 'unused variable' warnings created by latest commit.
Tom Lane [Sun, 3 Sep 2006 19:30:43 +0000 (19:30 +0000)]
Suppress 'unused variable' warnings created by latest commit.

17 years agoFix non-improvement of description of archive_timeout. archive_command
Tom Lane [Sun, 3 Sep 2006 19:06:15 +0000 (19:06 +0000)]
Fix non-improvement of description of archive_timeout.  archive_command
is only invoked on completed WAL segments, period --- there's no 'by
default' about it.

17 years agoArrange for GetSnapshotData to copy live-subtransaction XIDs from the
Tom Lane [Sun, 3 Sep 2006 15:59:39 +0000 (15:59 +0000)]
Arrange for GetSnapshotData to copy live-subtransaction XIDs from the
PGPROC array into snapshots, and use this information to avoid visits
to pg_subtrans in HeapTupleSatisfiesSnapshot.  This appears to solve
the pg_subtrans-related context swap storm problem that's been reported
by several people for 8.1.  While at it, modify GetSnapshotData to not
take an exclusive lock on ProcArrayLock, as closer analysis shows that
shared lock is always sufficient.
Itagaki Takahiro and Tom Lane

17 years agoRemove:
Bruce Momjian [Sun, 3 Sep 2006 13:37:38 +0000 (13:37 +0000)]
Remove:

< * Change LIMIT/OFFSET and FETCH/MOVE to use int8

17 years agoSynced parser.
Michael Meskes [Sun, 3 Sep 2006 12:24:08 +0000 (12:24 +0000)]
Synced parser.
Added another regression test and fixed tcp test.

17 years agoProperly round months into days and into seconds for interval
Bruce Momjian [Sun, 3 Sep 2006 03:34:04 +0000 (03:34 +0000)]
Properly round months into days and into seconds for interval
multiplication/division queries like select '41 mon 10:00:00'::interval
/ 10 as "pos".

Report from Michael Glaesemann

17 years agoReverted:
Bruce Momjian [Sun, 3 Sep 2006 03:26:42 +0000 (03:26 +0000)]
Reverted:

< * -Change LIMIT/OFFSET and FETCH/MOVE to use int8
> * Change LIMIT/OFFSET and FETCH/MOVE to use int8

17 years agoRevert FETCH/MOVE int64 patch. Was using incorrect checks for
Bruce Momjian [Sun, 3 Sep 2006 03:19:45 +0000 (03:19 +0000)]
Revert FETCH/MOVE int64 patch.  Was using incorrect checks for
fetch/move in scan.l.

17 years agoUpdate predicate locking text.
Bruce Momjian [Sun, 3 Sep 2006 01:59:09 +0000 (01:59 +0000)]
Update predicate locking text.

17 years agoFix case where "PM" to_timestamp() mask was eating too many characters.
Bruce Momjian [Sun, 3 Sep 2006 01:22:56 +0000 (01:22 +0000)]
Fix case where "PM" to_timestamp() mask was eating too many characters.
Report from Josh Tolley.

17 years agoFix LLONG_MAX define used by new int64 FETCH/MOVE patch.
Bruce Momjian [Sun, 3 Sep 2006 01:15:40 +0000 (01:15 +0000)]
Fix LLONG_MAX define used by new int64 FETCH/MOVE patch.

17 years agoRemove unnecessary copyObject() call in update (values) code.
Bruce Momjian [Sun, 3 Sep 2006 00:46:41 +0000 (00:46 +0000)]
Remove unnecessary copyObject() call in update (values) code.

17 years agoAdd:
Bruce Momjian [Sat, 2 Sep 2006 23:47:39 +0000 (23:47 +0000)]
Add:

> * Simplify ability to create partitioned tables
>
>   This would allow creation of partitioned tables without requiring
>   creation of rules for INSERT/UPDATE/DELETE, and constraints for
>   rapid partition selection.  Options could include range and hash
>   partition selection.
>
> * Allow auto-selection of partitioned tables for min/max() operations

17 years agoMake autovacuum behavior more agressive, per discussion on hackers list
Bruce Momjian [Sat, 2 Sep 2006 23:12:16 +0000 (23:12 +0000)]
Make autovacuum behavior more agressive, per discussion on hackers list
--- was part of autovacuum default 'on' patch that was reverted, but we
want this part.

Peter Eisentraut

17 years agoUpdate postgresql.conf line for default superuser_reserved_connections.
Bruce Momjian [Sat, 2 Sep 2006 23:08:36 +0000 (23:08 +0000)]
Update postgresql.conf line for default superuser_reserved_connections.

17 years agoChange "superuser_reserved_connections" default to 3, because of
Bruce Momjian [Sat, 2 Sep 2006 23:04:20 +0000 (23:04 +0000)]
Change "superuser_reserved_connections" default to 3, because of
possible autovacuum use.

17 years agoAdd URL for autovacuum default:
Bruce Momjian [Sat, 2 Sep 2006 22:59:00 +0000 (22:59 +0000)]
Add URL for autovacuum default:

>
>    http://archives.postgresql.org/pgsql-hackers/2006-08/msg01852.php

17 years agoUse '' rather than \' for literal single quotes in strings in
Bruce Momjian [Sat, 2 Sep 2006 22:03:30 +0000 (22:03 +0000)]
Use '' rather than \' for literal single quotes in strings in
/contrib/tsearch2.

Teodor Sigaev

17 years agoWording improvements for archive_timeout.
Bruce Momjian [Sat, 2 Sep 2006 21:11:26 +0000 (21:11 +0000)]
Wording improvements for archive_timeout.

17 years agoAdded async query capability. Original patch by
Joe Conway [Sat, 2 Sep 2006 21:11:15 +0000 (21:11 +0000)]
Added async query capability. Original patch by
Kai Londenberg, modified by Joe Conway

17 years agoSmall code cleanup for recent UPDATE SET (values) patch.
Bruce Momjian [Sat, 2 Sep 2006 20:52:01 +0000 (20:52 +0000)]
Small code cleanup for recent UPDATE SET (values) patch.

17 years agoAdd UPDATE tab SET ROW (col, ...) = (val, ...) for updating
Bruce Momjian [Sat, 2 Sep 2006 20:34:47 +0000 (20:34 +0000)]
Add UPDATE tab SET ROW (col, ...) = (val, ...) for updating
multiple columns

Susanne Ebrecht

17 years agoUpdate:
Bruce Momjian [Sat, 2 Sep 2006 20:31:50 +0000 (20:31 +0000)]
Update:

< Last updated: Sat Sep  2 08:31:04 EDT 2006
> Last updated: Sat Sep  2 16:31:46 EDT 2006
<  o Allow UPDATE tab SET ROW (col, ...) = (...) for updating multiple
<    columns
>  o -Allow UPDATE tab SET ROW (col, ...) = (val, ...) for updating
>    multiple columns
>  o Allow UPDATE tab SET ROW (col, ...) = (SELECT...)
<           A subselect can also be used as the value source.

17 years agoChange FETCH/MOVE to use int8.
Bruce Momjian [Sat, 2 Sep 2006 18:17:18 +0000 (18:17 +0000)]
Change FETCH/MOVE to use int8.

Dhanaraj M

17 years agoRevert as not needed/inconsistent with SQL REINDEX:
Bruce Momjian [Sat, 2 Sep 2006 17:10:17 +0000 (17:10 +0000)]
Revert as not needed/inconsistent with SQL REINDEX:

  Suppress some NOTICE messages from REINDEX command.

  Euler Taveira de Oliveira

17 years agoRemove GUC_REPORT for new "server_version_num" GUC variable. Added
Bruce Momjian [Sat, 2 Sep 2006 17:08:10 +0000 (17:08 +0000)]
Remove GUC_REPORT for new "server_version_num" GUC variable.  Added
overhead for every connection, per Tom.

17 years agoApply a simple solution to the problem of making INSERT/UPDATE/DELETE
Tom Lane [Sat, 2 Sep 2006 17:06:52 +0000 (17:06 +0000)]
Apply a simple solution to the problem of making INSERT/UPDATE/DELETE
RETURNING play nice with views/rules.  To wit, have the rule rewriter
rewrite any RETURNING clause found in a rule to produce what the rule's
triggering query asked for in its RETURNING clause, in particular drop
the RETURNING clause if no RETURNING in the triggering query.  This
leaves the responsibility for knowing how to produce the view's output
columns on the rule author, without requiring any fundamental changes
in rule semantics such as adding new rule event types would do.  The
initial implementation constrains things to ensure that there is
exactly one, unconditionally invoked RETURNING clause among the rules
for an event --- later we might be able to relax that, but for a post
feature freeze fix it seems better to minimize how much invention we do.
Per gripe from Jaime Casanova.

17 years agoAdd functions to /contrib/pgstattuple that show index statistics and
Bruce Momjian [Sat, 2 Sep 2006 17:05:29 +0000 (17:05 +0000)]
Add functions to /contrib/pgstattuple that show index statistics and
index page contents.

Satoshi Nagayasu

17 years agoAdd new variable "server_version_num", which is almost the same as
Bruce Momjian [Sat, 2 Sep 2006 13:12:50 +0000 (13:12 +0000)]
Add new variable "server_version_num", which is almost the same as
"server_version" but uses the handy PG_VERSION_NUM which allows apps to
do things like if ($version >= 80200) without having to parse apart the
value of server_version themselves.

Greg Sabino Mullane greg@turnstep.com

17 years agoUpdate wording:
Bruce Momjian [Sat, 2 Sep 2006 12:31:10 +0000 (12:31 +0000)]
Update wording:

<  o -Allow PL/python to composite types and result sets
>  o -Allow PL/python to return composite types and result sets

17 years agoAllow PL/python to return composite types and result sets
Bruce Momjian [Sat, 2 Sep 2006 12:30:01 +0000 (12:30 +0000)]
Allow PL/python to return composite types and result sets

Sven Suursoho

17 years agoDone:
Bruce Momjian [Sat, 2 Sep 2006 12:29:18 +0000 (12:29 +0000)]
Done:

                o -Allow PL/python to composite types and result sets

17 years agoSuppress some NOTICE messages from REINDEX command.
Bruce Momjian [Sat, 2 Sep 2006 02:43:07 +0000 (02:43 +0000)]
Suppress some NOTICE messages from REINDEX command.

Euler Taveira de Oliveira

17 years agoClean up rather sloppy fix in HEAD for the ancient bug that CREATE CONVERSION
Tom Lane [Thu, 31 Aug 2006 17:31:33 +0000 (17:31 +0000)]
Clean up rather sloppy fix in HEAD for the ancient bug that CREATE CONVERSION
didn't create a dependency from the new conversion to its schema.  Back-patch
to all supported releases.

17 years agoRepair interpretation of GB as MB.
Peter Eisentraut [Thu, 31 Aug 2006 15:10:51 +0000 (15:10 +0000)]
Repair interpretation of GB as MB.

17 years agoAttibution addition: Add Karel Zak also for COPY SELECT.
Bruce Momjian [Thu, 31 Aug 2006 03:17:50 +0000 (03:17 +0000)]
Attibution addition:  Add Karel Zak also for COPY SELECT.

17 years agoCorrect attibution:
Bruce Momjian [Thu, 31 Aug 2006 00:35:32 +0000 (00:35 +0000)]
Correct attibution:

COPY SELECT work done by Zoltan Boszormenyi

17 years agoDone:
Bruce Momjian [Thu, 31 Aug 2006 00:34:34 +0000 (00:34 +0000)]
Done:

< Last updated: Tue Aug 29 12:21:52 EDT 2006
> Last updated: Wed Aug 30 20:34:28 EDT 2006
<  o Allow COPY (SELECT ...) TO 'filename'
<
<    COPY should also be able to output views using COPY (SELECT
<    * FROM view) TO 'filename' internally.
<    http://archives.postgresql.org/pgsql-patches/2005-09/msg00148.php
>  o -Allow COPY (SELECT ...) TO 'filename'

17 years agoExtend COPY to support COPY (SELECT ...) TO ...
Tom Lane [Wed, 30 Aug 2006 23:34:22 +0000 (23:34 +0000)]
Extend COPY to support COPY (SELECT ...) TO ...

Bernd Helmle

17 years agoUpdate logging of prepare/execute syntax, per comments from Guillaume Smet.
Bruce Momjian [Wed, 30 Aug 2006 18:22:02 +0000 (18:22 +0000)]
Update logging of prepare/execute syntax, per comments from Guillaume Smet.

17 years agoFix things so that fopen's, not only open's, pass FILE_SHARE_DELETE
Tom Lane [Wed, 30 Aug 2006 18:06:27 +0000 (18:06 +0000)]
Fix things so that fopen's, not only open's, pass FILE_SHARE_DELETE
and other special flags on Windows.  May fix intermittent 'Permission
denied' errors.  Magnus Hagander