summaryrefslogtreecommitdiff
path: root/src/backend/access
AgeCommit message (Expand)Author
2006-10-06Message style improvementsPeter Eisentraut
2006-10-05Cleanup for pglz_compress code: remove dead code, const-ify API ofTom Lane
2006-10-05Make use of qsort_arg in several places that were formerly using klugyTom Lane
2006-10-04pgindent run for 8.2.Bruce Momjian
2006-10-03Make some sentences consistent with similar ones.Bruce Momjian
2006-09-26Degrade the transaction-id wraparound point message from LOG to DEBUG1, perAlvaro Herrera
2006-09-21Fix free space map to correctly track the total amount of FSM space neededTom Lane
2006-09-14Improve error message. Per discussionTeodor Sigaev
2006-09-10Remove unnecessary brace pair.Bruce Momjian
2006-09-10If we're going to advertise the array overlap/containment operators,Tom Lane
2006-09-10Rename contains/contained-by operators to @> and <@, per discussion thatTom Lane
2006-09-05Fix Intel compiler bug. Per discussionTeodor Sigaev
2006-09-03Arrange for GetSnapshotData to copy live-subtransaction XIDs from theTom Lane
2006-08-29Fix BUG #2594: Gin Indexes cause server to crash when it builds on empty tableTeodor Sigaev
2006-08-27Move xact.c's partial support for Lists of TransactionIds into pg_list.h.Tom Lane
2006-08-25Add the ability to create indexes 'concurrently', that is, withoutTom Lane
2006-08-24Optimize the case where a btree indexscan has current and mark positionsTom Lane
2006-08-21Make the server track an 'XID epoch', that is, maintain higher-order bitsTom Lane
2006-08-18Now that we've rearranged relation open to get a lock before touchingTom Lane
2006-08-17Implement archive_timeout feature to force xlog file switches to occur no moreTom Lane
2006-08-12Add INSERT/UPDATE/DELETE RETURNING, with basic docs and regression tests.Tom Lane
2006-08-07Make recovery from WAL be restartable, by executing a checkpoint-likeTom Lane
2006-08-06Add support for forcing a switch to a new xlog file; cause such a switchTom Lane
2006-08-03Add missing pgstat_count_index_scan(), per Andreas Seltenreich.Tom Lane
2006-07-31Change the relation_open protocol so that we obtain lock on a relationTom Lane
2006-07-30Modify snapshot definition so that lazy vacuums are ignored by otherAlvaro Herrera
2006-07-25Modify btree to delete known-dead index entries without an actual VACUUM.Tom Lane
2006-07-24DTrace support, with a small initial set of probesPeter Eisentraut
2006-07-20Don't try to truncate multixact SLRU files in checkpoints done during xlogTom Lane
2006-07-16Fix getDatumCopy(): don't use store_att_byval to copy into a DatumTom Lane
2006-07-16Improve error message wording.Tom Lane
2006-07-14Fix misguided removal of access/tuptoaster.h inclusion, per Kris Jurka.Tom Lane
2006-07-14Remove 576 references of include files that were not needed.Bruce Momjian
2006-07-13Allow include files to compile own their own.Bruce Momjian
2006-07-11Tweak fillfactor code as per my recent proposal. Fix nbtsort.c so thatTom Lane
2006-07-11Add support to GIN for =(anyarray,anyarray) operationTeodor Sigaev
2006-07-11Alphabetically order reference to include files, "S"-"Z".Bruce Momjian
2006-07-11Alphabetically order reference to include files, "N" - "S".Bruce Momjian
2006-07-11Alphabetically order reference to include files, "G" - "M".Bruce Momjian
2006-07-11GIN improvementsTeodor Sigaev
2006-07-10Improve vacuum code to track minimum Xids per table instead of per database.Alvaro Herrera
2006-07-03Code review for FILLFACTOR patch. Change WITH grammar as per earlierTom Lane
2006-07-02Add FILLFACTOR to CREATE INDEX.Bruce Momjian
2006-06-28Forget to add new file :((Teodor Sigaev
2006-06-28ChangesTeodor Sigaev
2006-06-27Put #ifdef NOT_USED around posix_fadvise call. We may want to resurrectTom Lane
2006-06-27Extend the MinimalTuple concept to tuplesort.c, thereby reducing theTom Lane
2006-06-27Create infrastructure for 'MinimalTuple' representation of in-memoryTom Lane
2006-06-22pg_stop_backup was calling XLogArchiveNotify() twice for the newly createdTom Lane
2006-06-20Remove redundant gettimeofday() calls to the extent practical withoutTom Lane