summaryrefslogtreecommitdiff
path: root/src/backend/access
AgeCommit message (Expand)Author
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
2006-06-18Don't try to call posix_fadvise() unless <fcntl.h> supplies a declarationTom Lane
2006-06-16Fix problems with cached tuple descriptors disappearing while still in useTom Lane
2006-06-16Test for POSIX_FADV_DONTNEED to use posix_fadvise().Bruce Momjian
2006-06-15Use posix_fadvise() to avoid kernel caching of WAL contents on WAL fileBruce Momjian
2006-05-29Som improve page split in multicolumn GiST index.Teodor Sigaev
2006-05-29Correct cheking in findParents(). iTeodor Sigaev
2006-05-28Remove traces of otherwise unused RELKIND_SPECIAL symbol. Leave the psql bitsAlvaro Herrera
2006-05-26Fix findParents() in case of multiple levels to find.Teodor Sigaev
2006-05-24* Add support NULL to GiST.Teodor Sigaev
2006-05-19Call MarkBufferDirty() before XLogInsert() during completion of insertTeodor Sigaev
2006-05-19Simplify gistSplit() and some refactoring related code.Teodor Sigaev
2006-05-19Rework completion of incomplete inserts. Now it writesTeodor Sigaev
2006-05-17Reduce size of critial section during vacuum full, criticalTeodor Sigaev
2006-05-10Clean up code associated with updating pg_class statistics columnsTom Lane
2006-05-10Reduce size of critical section and remove call of user-defined functions inTeodor Sigaev
2006-05-08Rewrite btree vacuuming to fold the former bulkdelete and cleanup operationsTom Lane
2006-05-07Rewrite btree index scans to work a page at a time in all cases (bothTom Lane