aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
...
* Remove reference to contrib/mac, which isn't there anymore.Tom Lane2006-09-09
|
* Add contrib/isn module for ISBN/ISSN/EAN13/etc product numbers, andTom Lane2006-09-09
| | | | | | 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.
* Revise OpenLDAP configuration and linking to work on more platformsTom Lane2006-09-09
| | | | | than before. Albe Laurenz (but editorialized heavily by me, so if it doesn't work it's my fault).
* Fix pg_dump for recent change removing separate RULE privilege.Tom Lane2006-09-08
| | | | | 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.
* Put back plan-time check for trying to apply SELECT FOR UPDATE/SHARETom Lane2006-09-08
| | | | | | 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 ...
* Tweak the behavior of log_duration as proposed by Guillaume Smet: ratherTom Lane2006-09-08
| | | | | | | 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.
* Not all C compilers understand the "//" comment in this test case, so I ↵Michael Meskes2006-09-08
| | | | removed it.
* Replaced complex tests with small ones.Michael Meskes2006-09-08
|
* More logic from complex/test* moved to their own testcases.Michael Meskes2006-09-08
|
* Clean up logging for extended-query-protocol operations, as per my recentTom Lane2006-09-07
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | 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.
* Update pgcvslog comments.Bruce Momjian2006-09-07
|
* Specify lo_write() to take a _const_ buffer, to match documentation.Bruce Momjian2006-09-07
|
* Changing a test case also changes the output that is expected.Michael Meskes2006-09-07
| | | | Float/Long aliasing doesn't work on all architecures.
* Removed one output because integer/double usage differMichael Meskes2006-09-07
|
* HTLM cleanup.Bruce Momjian2006-09-07
|
* Update Emacs/vim editor info.Bruce Momjian2006-09-07
|
* Update emacs info for FAQ_DEV.Bruce Momjian2006-09-07
| | | | Andrew Dunstan
* Add XML documentation.Bruce Momjian2006-09-07
|
* Update tools directory name.Bruce Momjian2006-09-06
|
* Change processing of extended-Query mode so that an unnamed statementTom Lane2006-09-06
| | | | | | | | 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.
* Be more wary about which LIBS elements to pull into sslinfo link.Tom Lane2006-09-06
| | | | Per buildfarm results.
* Fix compiler warnings on 64-bit boxes: difference betweenTeodor Sigaev2006-09-06
| | | | | pointers are int64, but warnings are emitted for position info in error messages in parser, so, just cast it to int32
* Add interval division/multiplication regression tests.Bruce Momjian2006-09-06
| | | | Michael Glaesemann
* Fix sslinfo so it builds on Darwin.Tom Lane2006-09-05
|
* Silence compiler warning about signed vs unsigned chars.Tom Lane2006-09-05
|
* Silence compiler warnings about incompatible function pointer types.Tom Lane2006-09-05
|
* Remove pgcrypto functions that were deprecated and slated for removal.Tom Lane2006-09-05
| | | | Marko Kreen
* Get rid of the separate RULE privilege for tables: now only a table's ownerTom Lane2006-09-05
| | | | | | | | | | | | | 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
* Make Gen_fmgrtab.sh locale-proof. Per report from Marko Kreen andTom Lane2006-09-05
| | | | fix suggestion from Peter.
* Fix markup and license.Teodor Sigaev2006-09-05
|
* Fix Intel compiler bug. Per discussionTeodor Sigaev2006-09-05
| | | | | 'GIN FailedAssertions on Itanium2 with Intel compiler' in pgsql-hackers, http://archives.postgresql.org/pgsql-hackers/2006-08/msg01914.php
* Add hstore contrib module.Teodor Sigaev2006-09-05
| | | | | Per discussion http://archives.postgresql.org/pgsql-hackers/2006-08/msg01409.php
* Remove contrib modules that have been migrated to pgfoundry: adddepend,Tom Lane2006-09-05
| | | | | dbase, dbmirror, fulltextindex, mac, userlock; or abandoned: mSQL-interface, tips.
* Lost some changes yet againMichael Meskes2006-09-05
|
* Started to cleanup complex tests.Michael Meskes2006-09-05
| | | | Added some interval checks to regression suite.
* Synced parser.Michael Meskes2006-09-05
| | | | | Fixed ecpglib trying to read one character after end-of-string. Fixed port number setting in regression suite.
* Remove GIN documentationBruce Momjian2006-09-05
| | | | Christopher Kings-Lynne
* Fix imprecision from interval rounding of multiplication/division.Bruce Momjian2006-09-05
| | | | Bruce, Michael Glaesemann
* Update Japanese FAQ.Bruce Momjian2006-09-05
| | | | Jun Kuwamura
* Fix information_schema.key_column_usage to show correct value ofTom Lane2006-09-04
| | | | | position_in_unique_constraint (column newly added per SQL2003). Greg Mullane
* Bring sslinfo Makefile up to speed for VPATH and pgxs builds.Tom Lane2006-09-04
|
* Update setseed() documentation.Bruce Momjian2006-09-04
|
* Update LDAP installation wording.Bruce Momjian2006-09-04
| | | | Albe Laurenz
* Trivial patch to double vacuum speed on tables with no indexes (preventBruce Momjian2006-09-04
| | | | | | second scan of table). Gregory Stark
* Add MSVC build tools.Bruce Momjian2006-09-04
| | | | Magnus Hagander
* Disallow TRUNCATE when there are any pending after-trigger events forTom Lane2006-09-04
| | | | | | | 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.
* Sequences were not being shown due to the use of lowercase 's' insteadBruce Momjian2006-09-04
| | | | | | | of 'S', and the views were not checking for table visibility with regards to temporary tables and sequences. Greg Sabino Mullane
* Add GIN documentation.Bruce Momjian2006-09-04
| | | | Christopher Kings-Lynne
* Mention paremeterized queries do not work with partial indexes.Bruce Momjian2006-09-04
| | | | Simon Riggs
* Remove trailing slash use in ecpg regression script; caused failures onBruce Momjian2006-09-04
| | | | some platforms.