summaryrefslogtreecommitdiff
path: root/src/include/access
Commit message (Expand)AuthorAgeFilesLines
* Improve logging of checkpoints. Patch by Greg Smith, worked overTom Lane2007-06-301-4/+33
* Implement "distributed" checkpoints in which the checkpoint I/O is spreadTom Lane2007-06-281-2/+11
* Teach heapam code to know the difference between a real seqscan and theTom Lane2007-06-092-4/+7
* Arrange for large sequential scans to synchronize with each other, so thatTom Lane2007-06-082-10/+20
* Fix several hash functions that were taking chintzy shortcuts instead ofTom Lane2007-06-011-1/+2
* Make large sequential scans and VACUUMs work in a limited-size "ring" ofTom Lane2007-05-304-6/+14
* Fix up pgstats counting of live and dead tuples to recognize that committedTom Lane2007-05-273-10/+7
* To support external compression of archived WAL data, add a flag bit toTom Lane2007-05-202-5/+13
* Move the tuple freezing point in CLUSTER to a point further back in the past,Alvaro Herrera2007-05-171-3/+4
* Tweak hash index AM to use the new ReadOrZeroBuffer bufmgr API when fetchingTom Lane2007-05-031-3/+5
* Change the timestamps recorded in transaction commit/abort xlog recordsTom Lane2007-04-302-5/+5
* Implement rate-limiting logic on how often backends will attempt to sendTom Lane2007-04-301-1/+2
* Repair PANIC condition in hash indexes when a previous index extension attemptTom Lane2007-04-191-1/+2
* Code review for btree page split WAL reduction patch. Make it actually workTom Lane2007-04-111-19/+24
* Minor tweaking of index special-space definitions so that the variousTom Lane2007-04-094-46/+57
* Make CLUSTER MVCC-safe. Heikki LinnakangasTom Lane2007-04-082-1/+31
* Make 'col IS NULL' clauses be indexable conditions.Tom Lane2007-04-061-1/+8
* Support varlena fields with single-byte headers and unaligned storage.Tom Lane2007-04-064-30/+81
* Decouple the values of TOAST_TUPLE_THRESHOLD and TOAST_MAX_CHUNK_SIZE.Tom Lane2007-04-031-22/+35
* Support enum data types. Along the way, use macros for the values ofTom Lane2007-04-021-1/+2
* Teach CLUSTER to skip writing WAL if not needed (ie, not using archiving)Tom Lane2007-03-292-6/+4
* First phase of plan-invalidation project: create a plan cache managementTom Lane2007-03-131-4/+4
* Remove undo information from pg_controldata --- never used.Bruce Momjian2007-03-031-2/+2
* Replace direct assignments to VARATT_SIZEP(x) with SET_VARSIZE(x, len).Tom Lane2007-02-272-10/+6
* Move fsync method macro defines into /include/access/xlogdefs.h so theyBruce Momjian2007-02-141-1/+72
* Combine cmin and cmax fields of HeapTupleHeaders into a single field, byTom Lane2007-02-091-53/+65
* Reduce WAL activity for page splits:Bruce Momjian2007-02-081-11/+16
* Rename MaxTupleSize to MaxHeapTupleSize to clarify that it's not meant toTom Lane2007-02-053-28/+38
* Don't MAXALIGN in the checks to decide whether a tuple is over TOAST'sTom Lane2007-02-041-3/+6
* Allow GIN's extractQuery method to signal that nothing can satisfy the query.Teodor Sigaev2007-01-311-4/+6
* Add support for cross-type hashing in hash index searches and hash joins.Tom Lane2007-01-301-1/+2
* Prevent WAL logging when COPY is done in the same transation thatBruce Momjian2007-01-252-3/+8
* Refactor the index AM API slightly: move currentItemData andNeil Conway2007-01-204-10/+10
* Enable another five tuple status bits by using the high bits of theBruce Momjian2007-01-092-10/+19
* Support ORDER BY ... NULLS FIRST/LAST, and add ASC/DESC/NULLS FIRST/NULLS LASTTom Lane2007-01-091-3/+11
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-0532-64/+64
* Repair two related errors in heap_lock_tuple: it was failing to recognizeTom Lane2006-11-171-1/+2
* Fix recently-understood problems with handling of XID freezing, particularlyTom Lane2006-11-056-11/+44
* Fix "failed to re-find parent key" btree VACUUM failure by revising pageTom Lane2006-11-011-3/+7
* Make use of qsort_arg in several places that were formerly using klugyTom Lane2006-10-051-2/+3
* pgindent run for 8.2.Bruce Momjian2006-10-0413-266/+292
* If we're going to advertise the array overlap/containment operators,Tom Lane2006-09-101-6/+1
* Rename contains/contained-by operators to @> and <@, per discussion thatTom Lane2006-09-101-3/+5
* Optimize the case where a btree indexscan has current and mark positionsTom Lane2006-08-241-1/+10
* Make the server track an 'XID epoch', that is, maintain higher-order bitsTom Lane2006-08-211-1/+2
* Now that we've rearranged relation open to get a lock before touchingTom Lane2006-08-181-2/+3
* Implement archive_timeout feature to force xlog file switches to occur no moreTom Lane2006-08-172-2/+12
* Make recovery from WAL be restartable, by executing a checkpoint-likeTom Lane2006-08-074-4/+8
* Add support for forcing a switch to a new xlog file; cause such a switchTom Lane2006-08-061-1/+5
* Change the relation_open protocol so that we obtain lock on a relationTom Lane2006-07-312-8/+6