aboutsummaryrefslogtreecommitdiff
Commit message (Collapse)AuthorAge
* 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.
* Change ILIKE to invoke lower() and then do plain LIKE comparison whenTom Lane2006-09-04
| | | | | | | 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.
* sslinfo contrib module - information about current SSL certificatePeter Eisentraut2006-09-04
| | | | Author: Victor Wagner <vitus@cryptocom.ru>
* Add missing gettext calls for some SSL errors.Peter Eisentraut2006-09-04
|
* Update Japanese readme for pgstattuple.Bruce Momjian2006-09-04
|
* Clean up some leftover problems in pgstattuple: remove unwanted andTom Lane2006-09-04
| | | | | unportable elog(NOTICE) report, fix install/uninstall sequence. Itagaki Takahiro
* Fix interval input parser so that fractional weeks and months areTom Lane2006-09-04
| | | | | | | 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
* Code review for UPDATE SET (columnlist) patch. Make it handle as muchTom Lane2006-09-03
| | | | | | 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.
* Remove duplicated index entry.Tom Lane2006-09-03
|
* Fix broken markup.Tom Lane2006-09-03
|
* Suppress 'unused variable' warnings created by latest commit.Tom Lane2006-09-03
|
* Fix non-improvement of description of archive_timeout. archive_commandTom Lane2006-09-03
| | | | | is only invoked on completed WAL segments, period --- there's no 'by default' about it.
* Arrange for GetSnapshotData to copy live-subtransaction XIDs from theTom Lane2006-09-03
| | | | | | | | | | 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
* Remove:Bruce Momjian2006-09-03
| | | | < * Change LIMIT/OFFSET and FETCH/MOVE to use int8
* Synced parser.Michael Meskes2006-09-03
| | | | Added another regression test and fixed tcp test.
* Properly round months into days and into seconds for intervalBruce Momjian2006-09-03
| | | | | | | multiplication/division queries like select '41 mon 10:00:00'::interval / 10 as "pos". Report from Michael Glaesemann
* Reverted:Bruce Momjian2006-09-03
| | | | | < * -Change LIMIT/OFFSET and FETCH/MOVE to use int8 > * Change LIMIT/OFFSET and FETCH/MOVE to use int8
* Revert FETCH/MOVE int64 patch. Was using incorrect checks forBruce Momjian2006-09-03
| | | | fetch/move in scan.l.
* Update predicate locking text.Bruce Momjian2006-09-03
|
* Fix case where "PM" to_timestamp() mask was eating too many characters.Bruce Momjian2006-09-03
| | | | Report from Josh Tolley.
* Fix LLONG_MAX define used by new int64 FETCH/MOVE patch.Bruce Momjian2006-09-03
|
* Remove unnecessary copyObject() call in update (values) code.Bruce Momjian2006-09-03
|
* Add:Bruce Momjian2006-09-02
| | | | | | | | | | | > * 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
* Make autovacuum behavior more agressive, per discussion on hackers listBruce Momjian2006-09-02
| | | | | | | --- was part of autovacuum default 'on' patch that was reverted, but we want this part. Peter Eisentraut
* Update postgresql.conf line for default superuser_reserved_connections.Bruce Momjian2006-09-02
|
* Change "superuser_reserved_connections" default to 3, because ofBruce Momjian2006-09-02
| | | | possible autovacuum use.
* Add URL for autovacuum default:Bruce Momjian2006-09-02
| | | | | > > http://archives.postgresql.org/pgsql-hackers/2006-08/msg01852.php
* Use '' rather than \' for literal single quotes in strings inBruce Momjian2006-09-02
| | | | | | /contrib/tsearch2. Teodor Sigaev
* Wording improvements for archive_timeout.Bruce Momjian2006-09-02
|
* Added async query capability. Original patch byJoe Conway2006-09-02
| | | | Kai Londenberg, modified by Joe Conway
* Small code cleanup for recent UPDATE SET (values) patch.Bruce Momjian2006-09-02
|
* Add UPDATE tab SET ROW (col, ...) = (val, ...) for updatingBruce Momjian2006-09-02
| | | | | | multiple columns Susanne Ebrecht
* Update:Bruce Momjian2006-09-02
| | | | | | | | | | | < 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.
* Change FETCH/MOVE to use int8.Bruce Momjian2006-09-02
| | | | Dhanaraj M
* Revert as not needed/inconsistent with SQL REINDEX:Bruce Momjian2006-09-02
| | | | | | Suppress some NOTICE messages from REINDEX command. Euler Taveira de Oliveira