summaryrefslogtreecommitdiff
path: root/src/backend/access
Commit message (Expand)AuthorAgeFilesLines
* Implement archive_timeout feature to force xlog file switches to occur no moreTom Lane2006-08-171-14/+107
* Add INSERT/UPDATE/DELETE RETURNING, with basic docs and regression tests.Tom Lane2006-08-121-4/+4
* Make recovery from WAL be restartable, by executing a checkpoint-likeTom Lane2006-08-075-77/+194
* Add support for forcing a switch to a new xlog file; cause such a switchTom Lane2006-08-061-48/+393
* Add missing pgstat_count_index_scan(), per Andreas Seltenreich.Tom Lane2006-08-031-1/+4
* Change the relation_open protocol so that we obtain lock on a relationTom Lane2006-07-316-143/+103
* Modify snapshot definition so that lazy vacuums are ignored by otherAlvaro Herrera2006-07-303-4/+8
* Modify btree to delete known-dead index entries without an actual VACUUM.Tom Lane2006-07-255-15/+141
* DTrace support, with a small initial set of probesPeter Eisentraut2006-07-241-1/+7
* Don't try to truncate multixact SLRU files in checkpoints done during xlogTom Lane2006-07-201-3/+8
* Fix getDatumCopy(): don't use store_att_byval to copy into a DatumTom Lane2006-07-161-25/+22
* Improve error message wording.Tom Lane2006-07-161-2/+2
* Fix misguided removal of access/tuptoaster.h inclusion, per Kris Jurka.Tom Lane2006-07-141-1/+2
* Remove 576 references of include files that were not needed.Bruce Momjian2006-07-1436-138/+40
* Allow include files to compile own their own.Bruce Momjian2006-07-1312-14/+27
* Tweak fillfactor code as per my recent proposal. Fix nbtsort.c so thatTom Lane2006-07-113-16/+25
* Add support to GIN for =(anyarray,anyarray) operationTeodor Sigaev2006-07-111-1/+3
* Alphabetically order reference to include files, "S"-"Z".Bruce Momjian2006-07-111-3/+3
* Alphabetically order reference to include files, "N" - "S".Bruce Momjian2006-07-111-2/+2
* Alphabetically order reference to include files, "G" - "M".Bruce Momjian2006-07-116-12/+12
* GIN improvementsTeodor Sigaev2006-07-112-65/+207
* Improve vacuum code to track minimum Xids per table instead of per database.Alvaro Herrera2006-07-101-9/+9
* Code review for FILLFACTOR patch. Change WITH grammar as per earlierTom Lane2006-07-0315-271/+453
* Add FILLFACTOR to CREATE INDEX.Bruce Momjian2006-07-0215-42/+283
* Forget to add new file :((Teodor Sigaev2006-06-281-0/+538
* ChangesTeodor Sigaev2006-06-285-564/+185
* Put #ifdef NOT_USED around posix_fadvise call. We may want to resurrectTom Lane2006-06-271-2/+14
* Extend the MinimalTuple concept to tuplesort.c, thereby reducing theTom Lane2006-06-271-2/+2
* Create infrastructure for 'MinimalTuple' representation of in-memoryTom Lane2006-06-271-4/+174
* pg_stop_backup was calling XLogArchiveNotify() twice for the newly createdTom Lane2006-06-221-33/+28
* Remove redundant gettimeofday() calls to the extent practical withoutTom Lane2006-06-201-5/+8
* Don't try to call posix_fadvise() unless <fcntl.h> supplies a declarationTom Lane2006-06-181-5/+7
* Fix problems with cached tuple descriptors disappearing while still in useTom Lane2006-06-162-2/+51
* Test for POSIX_FADV_DONTNEED to use posix_fadvise().Bruce Momjian2006-06-161-2/+2
* Use posix_fadvise() to avoid kernel caching of WAL contents on WAL fileBruce Momjian2006-06-151-25/+33
* Som improve page split in multicolumn GiST index.Teodor Sigaev2006-05-292-40/+55
* Correct cheking in findParents(). iTeodor Sigaev2006-05-291-2/+2
* Remove traces of otherwise unused RELKIND_SPECIAL symbol. Leave the psql bitsAlvaro Herrera2006-05-281-13/+3
* Fix findParents() in case of multiple levels to find.Teodor Sigaev2006-05-261-2/+3
* * Add support NULL to GiST.Teodor Sigaev2006-05-243-395/+356
* Call MarkBufferDirty() before XLogInsert() during completion of insertTeodor Sigaev2006-05-191-4/+6
* Simplify gistSplit() and some refactoring related code.Teodor Sigaev2006-05-193-200/+152
* Rework completion of incomplete inserts. Now it writesTeodor Sigaev2006-05-192-106/+184
* Reduce size of critial section during vacuum full, criticalTeodor Sigaev2006-05-174-240/+391
* Clean up code associated with updating pg_class statistics columnsTom Lane2006-05-105-28/+199
* Reduce size of critical section and remove call of user-defined functions inTeodor Sigaev2006-05-104-259/+247
* Rewrite btree vacuuming to fold the former bulkdelete and cleanup operationsTom Lane2006-05-087-240/+650
* Rewrite btree index scans to work a page at a time in all cases (bothTom Lane2006-05-076-596/+540
* Fix typo noticed by Alvaro HerreraTeodor Sigaev2006-05-031-2/+2
* Clean up API for ambulkdelete/amvacuumcleanup as per today's discussion.Tom Lane2006-05-025-124/+123