summaryrefslogtreecommitdiff
path: root/src/backend/access
AgeCommit message (Expand)Author
2008-12-03Introduce visibility map. The visibility map is a bitmap with one bit perHeikki Linnakangas
2008-12-03If pg_stop_backup() is called just after switching to a new xlog file,Heikki Linnakangas
2008-11-30Clean up the API for DestReceiver objects by eliminating the assumptionTom Lane
2008-11-26Rely on relcache invalidation to update the cached size of the FSM.Heikki Linnakangas
2008-11-19Rethink the way FSM truncation works. Instead of WAL-logging FSMHeikki Linnakangas
2008-11-14Replace the usage of heap_addheader to create pg_attribute tuples with regularAlvaro Herrera
2008-11-13Prevent synchronous scan during GIN index build, because GIN is optimizedTom Lane
2008-11-11Fix sloppy omission of now-required #include's.Tom Lane
2008-11-11Change error messages to print the physical path, likeHeikki Linnakangas
2008-11-09Add a startup check that pg_xlog and pg_xlog/archive_status exist.Tom Lane
2008-11-06Improve bulk-insert performance by keeping the current target buffer pinnedTom Lane
2008-11-06The logic in systable_beginscan to translate heap attribute numbers toHeikki Linnakangas
2008-11-03Clean up the messy semantics (not to mention inefficiency) of PageGetTempPageTom Lane
2008-11-03Fix silly typo in previous commit.Alvaro Herrera
2008-11-03Fix TransactionIdSetStatusBit so that it doesn't try to change a transactionAlvaro Herrera
2008-11-03Fix mistakes in comment headersAlvaro Herrera
2008-11-02Remove the last vestiges of the MAKE_PTR/MAKE_OFFSET mechanism. We haven'tTom Lane
2008-11-02Remove all uses of the deprecated functions heap_formtuple, heap_modifytuple,Tom Lane
2008-10-31Update FSM on WAL replay. This is a bit limited; the FSM is only updatedHeikki Linnakangas
2008-10-31Unite ReadBufferWithFork, ReadBufferWithStrategy, and ZeroOrReadBufferHeikki Linnakangas
2008-10-30Fix recoveryLastXTime logic so that it actually does what one would expect.Tom Lane
2008-10-27No need for extra code to log freezing zero tuples. Callers already check thatAlvaro Herrera
2008-10-22Fix GiST's killing tuple: GISTScanOpaque->curpos wasn'tTeodor Sigaev
2008-10-20These functions no longer return a value, per complaint from gothic_moth viaAlvaro Herrera
2008-10-20Rework subtransaction commit protocol for hot standby.Alvaro Herrera
2008-10-20Remove support of backward scan in GiST. Per discussionTeodor Sigaev
2008-10-20Remove mark/restore support in GIN and GiST indexes.Teodor Sigaev
2008-10-17Remove useless mark/restore support in hash index AM, per discussion.Tom Lane
2008-10-17During repeated rescan of GiST index it's possible that scan keyTeodor Sigaev
2008-10-10Fix small query-lifespan memory leak introduced by 8.4 change in index AM APITom Lane
2008-10-08Modify the parser's error reporting to include a specific hint for the caseTom Lane
2008-10-06Index FSMs needs to be vacuumed as well. Report by Jeff Davis.Heikki Linnakangas
2008-10-02Update README.HOT to reflect new snapshot tracking and xmin advancementBruce Momjian
2008-09-30Rewrite the FSM. Instead of relying on a fixed-size shared memory segment, theHeikki Linnakangas
2008-09-23Make LC_COLLATE and LC_CTYPE database-level settings. Collation andHeikki Linnakangas
2008-09-15Change hash indexes to store only the hash code rather than the whole indexedTom Lane
2008-09-11Initialize the minimum frozen Xid in vac_update_datfrozenxid usingAlvaro Herrera
2008-09-08Fix a couple of problems pointed out by Fujii Masao in the 2008-Apr-05 patchTom Lane
2008-09-04Fix strategy propagation to scanEntry for partial match by moving propagationTeodor Sigaev
2008-08-23Fix possible duplicate tuples while GiST scan. Now page is processedTeodor Sigaev
2008-08-11Introduce the concept of relation forks. An smgr relation can now consistHeikki Linnakangas
2008-08-01Add a few more DTrace probes to the backend.Alvaro Herrera
2008-07-23Use guc.c's parse_int() instead of pg_atoi() to parse fillfactor inTom Lane
2008-07-13Clean up the use of some page-header-access macros: principally, useTom Lane
2008-07-11Multi-column GIN indexes. Teodor SigaevTom Lane
2008-07-08Minor improvements to the Gin internal documentation.Neil Conway
2008-07-04Fix initialization of GinScanEntryData.partialMatchTeodor Sigaev
2008-06-30Fix recovery.conf boolean variables to take the same range of stringBruce Momjian
2008-06-29Remove unnecessary coziness of GIN code with datum copying. Now thatTom Lane
2008-06-19Improve our #include situation by moving pointer types away from theAlvaro Herrera