summaryrefslogtreecommitdiff
path: root/src/backend/access
Commit message (Expand)AuthorAgeFilesLines
* Refactor the index AM API slightly: move currentItemData andNeil Conway2007-01-205-49/+47
* Remove remains of old depend target.Peter Eisentraut2007-01-208-63/+8
* Arrange for autovacuum to be killed when another operation wants to be aloneAlvaro Herrera2007-01-161-1/+2
* Add some notes about the basic mathematical laws that the system presumesTom Lane2007-01-121-2/+45
* Enable another five tuple status bits by using the high bits of theBruce Momjian2007-01-092-18/+19
* Add a citation to Seltzer and Yigit's Usenix '91 paper about hash tableTom Lane2007-01-091-3/+8
* Support ORDER BY ... NULLS FIRST/LAST, and add ASC/DESC/NULLS FIRST/NULLS LASTTom Lane2007-01-095-78/+227
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-0557-114/+114
* Fix some small typos in comments. Greg StarkTom Lane2007-01-042-6/+6
* Clean up smgr.c/md.c APIs as per discussion a couple months ago. Instead ofTom Lane2007-01-032-31/+20
* Support type modifiers for user-defined types, and pull most knowledgeTom Lane2006-12-301-4/+5
* Fix up btree's initial scankey processing to be able to detect redundantTom Lane2006-12-283-99/+208
* Restructure operator classes to allow improved handling of cross-data-typeTom Lane2006-12-233-29/+58
* Remove the logId/logSeg fields from pg_control, because they are not neededTom Lane2006-12-081-58/+42
* Add a txn_start column to pg_stat_activity. This makes it easier toNeil Conway2006-12-061-1/+4
* Minor adjustments to make failures in startup/shutdown behave more cleanly.Tom Lane2006-11-301-10/+2
* Fix bug with page deletion. If inner page is removed and it tries toTeodor Sigaev2006-11-301-7/+15
* Add a comment noting that heap_copytuple_with_tuple() results in aNeil Conway2006-11-231-1/+4
* Several changes to reduce the probability of running out of memory duringTom Lane2006-11-231-31/+61
* On systems that have setsid(2) (which should be just about everything exceptTom Lane2006-11-211-4/+21
* Repair problems with hash indexes that span multiple segments: the hash code'sTom Lane2006-11-192-44/+184
* Repair two related errors in heap_lock_tuple: it was failing to recognizeTom Lane2006-11-172-43/+108
* String fixPeter Eisentraut2006-11-161-2/+2
* Fix some typos in comments.Neil Conway2006-11-127-35/+35
* Suppress a few 'uninitialized variable' warnings that gcc emits only atTom Lane2006-11-111-1/+4
* Clean up some misleading references to %p being a full path, per Simon.Tom Lane2006-11-101-2/+2
* Change Windows rename and unlink substitutes so that they time out afterTom Lane2006-11-081-2/+19
* Fix recently-understood problems with handling of XID freezing, particularlyTom Lane2006-11-056-67/+430
* Fix "failed to re-find parent key" btree VACUUM failure by revising pageTom Lane2006-11-015-136/+356
* Add some code to CREATE DATABASE to check for pre-existing subdirectoriesTom Lane2006-10-181-1/+11
* Message style improvementsPeter Eisentraut2006-10-064-32/+32
* Cleanup for pglz_compress code: remove dead code, const-ify API ofTom Lane2006-10-051-27/+23
* Make use of qsort_arg in several places that were formerly using klugyTom Lane2006-10-051-37/+25
* pgindent run for 8.2.Bruce Momjian2006-10-0443-2642/+3309
* Make some sentences consistent with similar ones.Bruce Momjian2006-10-031-2/+2
* Degrade the transaction-id wraparound point message from LOG to DEBUG1, perAlvaro Herrera2006-09-261-2/+2
* Fix free space map to correctly track the total amount of FSM space neededTom Lane2006-09-213-21/+29
* Improve error message. Per discussionTeodor Sigaev2006-09-141-2/+9
* Remove unnecessary brace pair.Bruce Momjian2006-09-101-3/+1
* If we're going to advertise the array overlap/containment operators,Tom Lane2006-09-101-175/+13
* Rename contains/contained-by operators to @> and <@, per discussion thatTom Lane2006-09-102-4/+8
* Fix Intel compiler bug. Per discussionTeodor Sigaev2006-09-051-2/+17
* Arrange for GetSnapshotData to copy live-subtransaction XIDs from theTom Lane2006-09-031-6/+17
* Fix BUG #2594: Gin Indexes cause server to crash when it builds on empty tableTeodor Sigaev2006-08-291-1/+4
* Move xact.c's partial support for Lists of TransactionIds into pg_list.h.Tom Lane2006-08-271-9/+1
* Add the ability to create indexes 'concurrently', that is, withoutTom Lane2006-08-251-2/+27
* Optimize the case where a btree indexscan has current and mark positionsTom Lane2006-08-242-25/+57
* Make the server track an 'XID epoch', that is, maintain higher-order bitsTom Lane2006-08-211-10/+84
* Now that we've rearranged relation open to get a lock before touchingTom Lane2006-08-181-25/+63
* Implement archive_timeout feature to force xlog file switches to occur no moreTom Lane2006-08-171-14/+107