summaryrefslogtreecommitdiff
path: root/src/backend/access
AgeCommit message (Expand)Author
2008-12-24Change the name of dtrace wal tracepoints:Bruce Momjian
2008-12-17The attached patch contains a couple of fixes in the existing probes andBruce Momjian
2008-12-16Make heap_update() set newtup->t_tableOid correctly, for consistency withTom Lane
2008-12-11To reduce confusion over whether VACUUM FULL is needed for anti-wraparoundTom Lane
2008-12-09Revert SIGUSR1 multiplexing patch, per Tom's objection.Heikki Linnakangas
2008-12-09Provide support for multiplexing SIGUSR1 signal. The upcoming synchronousHeikki Linnakangas
2008-12-06MAPSIZE macro needs to use MAXALIGN(SizeOfPageHeaderData) instead ofHeikki Linnakangas
2008-12-04Fix a couple of snapshot management bugs in the new ResourceOwner world:Alvaro Herrera
2008-12-04Initialize GISTScanOpaque->qual_ok even if there is no conditions.Teodor Sigaev
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