git.postgresql.org Git - postgresql.git/log

git projects / postgresql.git / log
? search:
summary | shortlog | log | commit | commitdiff | tree
first ⋅ prev ⋅ next
postgresql.git
19 years agoFix pg_dump for recent change removing separate RULE privilege.
commit | commitdiff | tree
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.

19 years agoPut back plan-time check for trying to apply SELECT FOR UPDATE/SHARE
commit | commitdiff | tree
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 ...

19 years agoTweak the behavior of log_duration as proposed by Guillaume Smet: rather
commit | commitdiff | tree
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.

19 years agoNot all C compilers understand the "//" comment in this test case, so I removed it.
commit | commitdiff | tree
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.

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

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

19 years agoClean up logging for extended-query-protocol operations, as per my recent
commit | commitdiff | tree
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.

19 years agoUpdate pgcvslog comments.
commit | commitdiff | tree
Bruce Momjian [Thu, 7 Sep 2006 18:13:56 +0000 (18:13 +0000)]
Update pgcvslog comments.

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

19 years agoChanging a test case also changes the output that is expected.
commit | commitdiff | tree
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.

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

19 years agoHTLM cleanup.
commit | commitdiff | tree
Bruce Momjian [Thu, 7 Sep 2006 00:12:20 +0000 (00:12 +0000)]
HTLM cleanup.

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

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

Andrew Dunstan

19 years agoAdd XML documentation.
commit | commitdiff | tree
Bruce Momjian [Thu, 7 Sep 2006 00:04:48 +0000 (00:04 +0000)]
Add XML documentation.

19 years agoUpdate tools directory name.
commit | commitdiff | tree
Bruce Momjian [Wed, 6 Sep 2006 22:03:22 +0000 (22:03 +0000)]
Update tools directory name.

19 years agoChange processing of extended-Query mode so that an unnamed statement
commit | commitdiff | tree
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.

19 years agoBe more wary about which LIBS elements to pull into sslinfo link.
commit | commitdiff | tree
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.

19 years agoFix compiler warnings on 64-bit boxes: difference between
commit | commitdiff | tree
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

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

Michael Glaesemann

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

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

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

19 years agoRemove pgcrypto functions that were deprecated and slated for removal.
commit | commitdiff | tree
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

19 years agoGet rid of the separate RULE privilege for tables: now only a table's owner
commit | commitdiff | tree
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

19 years agoMake Gen_fmgrtab.sh locale-proof. Per report from Marko Kreen and
commit | commitdiff | tree
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.

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

19 years agoFix Intel compiler bug. Per discussion
commit | commitdiff | tree
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

19 years agoAdd hstore contrib module.
commit | commitdiff | tree
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

19 years agoRemove contrib modules that have been migrated to pgfoundry: adddepend,
commit | commitdiff | tree
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.

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

19 years agoStarted to cleanup complex tests.
commit | commitdiff | tree
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.

19 years agoSynced parser.
commit | commitdiff | tree
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.

19 years agoRemove GIN documentation
commit | commitdiff | tree
Bruce Momjian [Tue, 5 Sep 2006 03:09:56 +0000 (03:09 +0000)]
Remove GIN documentation

Christopher Kings-Lynne

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

Bruce, Michael Glaesemann

19 years agoUpdate Japanese FAQ.
commit | commitdiff | tree
Bruce Momjian [Tue, 5 Sep 2006 00:13:41 +0000 (00:13 +0000)]
Update Japanese FAQ.

Jun Kuwamura

19 years agoFix information_schema.key_column_usage to show correct value of
commit | commitdiff | tree
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

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

19 years agoUpdate setseed() documentation.
commit | commitdiff | tree
Bruce Momjian [Mon, 4 Sep 2006 21:47:25 +0000 (21:47 +0000)]
Update setseed() documentation.

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

Albe Laurenz

19 years agoTrivial patch to double vacuum speed on tables with no indexes (prevent
commit | commitdiff | tree
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

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

Magnus Hagander

19 years agoDisallow TRUNCATE when there are any pending after-trigger events for
commit | commitdiff | tree
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.

19 years agoSequences were not being shown due to the use of lowercase 's' instead
commit | commitdiff | tree
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

19 years agoAdd GIN documentation.
commit | commitdiff | tree
Bruce Momjian [Mon, 4 Sep 2006 20:10:53 +0000 (20:10 +0000)]
Add GIN documentation.

Christopher Kings-Lynne

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

Simon Riggs

19 years agoRemove trailing slash use in ecpg regression script; caused failures on
commit | commitdiff | tree
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.

19 years agoChange ILIKE to invoke lower() and then do plain LIKE comparison when
commit | commitdiff | tree
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.

19 years agosslinfo contrib module - information about current SSL certificate
commit | commitdiff | tree
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>

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

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

19 years agoClean up some leftover problems in pgstattuple: remove unwanted and
commit | commitdiff | tree
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

19 years agoFix interval input parser so that fractional weeks and months are
commit | commitdiff | tree
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

19 years agoCode review for UPDATE SET (columnlist) patch. Make it handle as much
commit | commitdiff | tree
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.

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

19 years agoFix broken markup.
commit | commitdiff | tree
Tom Lane [Sun, 3 Sep 2006 22:15:32 +0000 (22:15 +0000)]
Fix broken markup.

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

19 years agoFix non-improvement of description of archive_timeout. archive_command
commit | commitdiff | tree
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.

19 years agoArrange for GetSnapshotData to copy live-subtransaction XIDs from the
commit | commitdiff | tree
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

19 years agoRemove:
commit | commitdiff | tree
Bruce Momjian [Sun, 3 Sep 2006 13:37:38 +0000 (13:37 +0000)]
Remove:

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

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

19 years agoProperly round months into days and into seconds for interval
commit | commitdiff | tree
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

19 years agoReverted:
commit | commitdiff | tree
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

19 years agoRevert FETCH/MOVE int64 patch. Was using incorrect checks for
commit | commitdiff | tree
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.

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

19 years agoFix case where "PM" to_timestamp() mask was eating too many characters.
commit | commitdiff | tree
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.

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

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

19 years agoAdd:
commit | commitdiff | tree
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

19 years agoMake autovacuum behavior more agressive, per discussion on hackers list
commit | commitdiff | tree
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

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

19 years agoChange "superuser_reserved_connections" default to 3, because of
commit | commitdiff | tree
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.

19 years agoAdd URL for autovacuum default:
commit | commitdiff | tree
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

19 years agoUse '' rather than \' for literal single quotes in strings in
commit | commitdiff | tree
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

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

19 years agoAdded async query capability. Original patch by
commit | commitdiff | tree
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

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

19 years agoAdd UPDATE tab SET ROW (col, ...) = (val, ...) for updating
commit | commitdiff | tree
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

19 years agoUpdate:
commit | commitdiff | tree
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.

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

Dhanaraj M

19 years agoRevert as not needed/inconsistent with SQL REINDEX:
commit | commitdiff | tree
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

19 years agoRemove GUC_REPORT for new "server_version_num" GUC variable. Added
commit | commitdiff | tree
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.

19 years agoApply a simple solution to the problem of making INSERT/UPDATE/DELETE
commit | commitdiff | tree
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.

19 years agoAdd functions to /contrib/pgstattuple that show index statistics and
commit | commitdiff | tree
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

19 years agoAdd new variable "server_version_num", which is almost the same as
commit | commitdiff | tree
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

19 years agoUpdate wording:
commit | commitdiff | tree
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

19 years agoAllow PL/python to return composite types and result sets
commit | commitdiff | tree
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

19 years agoDone:
commit | commitdiff | tree
Bruce Momjian [Sat, 2 Sep 2006 12:29:18 +0000 (12:29 +0000)]
Done:

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

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

Euler Taveira de Oliveira

19 years agoClean up rather sloppy fix in HEAD for the ancient bug that CREATE CONVERSION
commit | commitdiff | tree
Tom Lane [2006年8月31日 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.

19 years agoRepair interpretation of GB as MB.
commit | commitdiff | tree
Peter Eisentraut [2006年8月31日 15:10:51 +0000 (15:10 +0000)]
Repair interpretation of GB as MB.

19 years agoAttibution addition: Add Karel Zak also for COPY SELECT.
commit | commitdiff | tree
Bruce Momjian [2006年8月31日 03:17:50 +0000 (03:17 +0000)]
Attibution addition: Add Karel Zak also for COPY SELECT.

19 years agoCorrect attibution:
commit | commitdiff | tree
Bruce Momjian [2006年8月31日 00:35:32 +0000 (00:35 +0000)]
Correct attibution:

COPY SELECT work done by Zoltan Boszormenyi

19 years agoDone:
commit | commitdiff | tree
Bruce Momjian [2006年8月31日 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'

19 years agoExtend COPY to support COPY (SELECT ...) TO ...
commit | commitdiff | tree
Tom Lane [2006年8月30日 23:34:22 +0000 (23:34 +0000)]
Extend COPY to support COPY (SELECT ...) TO ...

Bernd Helmle

19 years agoUpdate logging of prepare/execute syntax, per comments from Guillaume Smet.
commit | commitdiff | tree
Bruce Momjian [2006年8月30日 18:22:02 +0000 (18:22 +0000)]
Update logging of prepare/execute syntax, per comments from Guillaume Smet.

19 years agoFix things so that fopen's, not only open's, pass FILE_SHARE_DELETE
commit | commitdiff | tree
Tom Lane [2006年8月30日 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

19 years agoDept. of second thoughts: if query fails part way through, shut down
commit | commitdiff | tree
Tom Lane [2006年8月29日 22:48:55 +0000 (22:48 +0000)]
Dept. of second thoughts: if query fails part way through, shut down
the pager before reporting the error.

19 years agoCreate a FETCH_COUNT parameter that causes psql to execute SELECT-like
commit | commitdiff | tree
Tom Lane [2006年8月29日 22:25:08 +0000 (22:25 +0000)]
Create a FETCH_COUNT parameter that causes psql to execute SELECT-like
queries via a cursor, fetching a limited number of rows at a time and
therefore not risking exhausting memory. A disadvantage of the scheme
is that 'aligned' output mode will align each group of rows independently
leading to odd-looking output, but all the other output formats work
reasonably well. Chris Mair, with some additional hacking by moi.

19 years agoSeparate prepared statement and bind parameters with comma.
commit | commitdiff | tree
Bruce Momjian [2006年8月29日 20:10:42 +0000 (20:10 +0000)]
Separate prepared statement and bind parameters with comma.

Fix printing of NULL bind parameters, use "NULL".

next
This is the main PostgreSQL git repository.
RSS Atom

AltStyle によって変換されたページ (->オリジナル) /