summaryrefslogtreecommitdiff
path: root/src/backend/access
Commit message (Expand)AuthorAgeFilesLines
* Change the name of dtrace wal tracepoints:Bruce Momjian2008-12-241-3/+3
* The attached patch contains a couple of fixes in the existing probes andBruce Momjian2008-12-171-1/+15
* Make heap_update() set newtup->t_tableOid correctly, for consistency withTom Lane2008-12-161-1/+2
* To reduce confusion over whether VACUUM FULL is needed for anti-wraparoundTom Lane2008-12-111-3/+3
* Revert SIGUSR1 multiplexing patch, per Tom's objection.Heikki Linnakangas2008-12-091-2/+1
* Provide support for multiplexing SIGUSR1 signal. The upcoming synchronousHeikki Linnakangas2008-12-091-1/+2
* MAPSIZE macro needs to use MAXALIGN(SizeOfPageHeaderData) instead ofHeikki Linnakangas2008-12-061-2/+2
* Fix a couple of snapshot management bugs in the new ResourceOwner world:Alvaro Herrera2008-12-041-1/+7
* Initialize GISTScanOpaque->qual_ok even if there is no conditions.Teodor Sigaev2008-12-041-2/+3
* Introduce visibility map. The visibility map is a bitmap with one bit perHeikki Linnakangas2008-12-034-14/+624
* If pg_stop_backup() is called just after switching to a new xlog file,Heikki Linnakangas2008-12-031-4/+10
* Clean up the API for DestReceiver objects by eliminating the assumptionTom Lane2008-11-301-19/+31
* Rely on relcache invalidation to update the cached size of the FSM.Heikki Linnakangas2008-11-261-2/+2
* Rethink the way FSM truncation works. Instead of WAL-logging FSMHeikki Linnakangas2008-11-1910-77/+85
* Replace the usage of heap_addheader to create pg_attribute tuples with regularAlvaro Herrera2008-11-141-54/+1
* Prevent synchronous scan during GIN index build, because GIN is optimizedTom Lane2008-11-134-9/+12
* Fix sloppy omission of now-required #include's.Tom Lane2008-11-111-1/+2
* Change error messages to print the physical path, likeHeikki Linnakangas2008-11-112-32/+43
* Add a startup check that pg_xlog and pg_xlog/archive_status exist.Tom Lane2008-11-091-1/+56
* Improve bulk-insert performance by keeping the current target buffer pinnedTom Lane2008-11-064-55/+131
* The logic in systable_beginscan to translate heap attribute numbers toHeikki Linnakangas2008-11-061-17/+27
* Clean up the messy semantics (not to mention inefficiency) of PageGetTempPageTom Lane2008-11-037-40/+13
* Fix silly typo in previous commit.Alvaro Herrera2008-11-031-2/+2
* Fix TransactionIdSetStatusBit so that it doesn't try to change a transactionAlvaro Herrera2008-11-031-5/+21
* Fix mistakes in comment headersAlvaro Herrera2008-11-031-3/+3
* Remove the last vestiges of the MAKE_PTR/MAKE_OFFSET mechanism. We haven'tTom Lane2008-11-021-12/+12
* Remove all uses of the deprecated functions heap_formtuple, heap_modifytuple,Tom Lane2008-11-022-410/+37
* Update FSM on WAL replay. This is a bit limited; the FSM is only updatedHeikki Linnakangas2008-10-311-7/+58
* Unite ReadBufferWithFork, ReadBufferWithStrategy, and ZeroOrReadBufferHeikki Linnakangas2008-10-317-60/+87
* Fix recoveryLastXTime logic so that it actually does what one would expect.Tom Lane2008-10-301-4/+12
* No need for extra code to log freezing zero tuples. Callers already check thatAlvaro Herrera2008-10-271-11/+5
* Fix GiST's killing tuple: GISTScanOpaque->curpos wasn'tTeodor Sigaev2008-10-221-19/+27
* These functions no longer return a value, per complaint from gothic_moth viaAlvaro Herrera2008-10-201-6/+6
* Rework subtransaction commit protocol for hot standby.Alvaro Herrera2008-10-205-203/+272
* Remove support of backward scan in GiST. Per discussionTeodor Sigaev2008-10-201-25/+15
* Remove mark/restore support in GIN and GiST indexes.Teodor Sigaev2008-10-204-230/+18
* Remove useless mark/restore support in hash index AM, per discussion.Tom Lane2008-10-171-52/+8
* During repeated rescan of GiST index it's possible that scan keyTeodor Sigaev2008-10-172-3/+16
* Fix small query-lifespan memory leak introduced by 8.4 change in index AM APITom Lane2008-10-101-4/+12
* Modify the parser's error reporting to include a specific hint for the caseTom Lane2008-10-081-1/+71
* Index FSMs needs to be vacuumed as well. Report by Jeff Davis.Heikki Linnakangas2008-10-063-3/+12
* Update README.HOT to reflect new snapshot tracking and xmin advancementBruce Momjian2008-10-021-21/+20
* Rewrite the FSM. Instead of relying on a fixed-size shared memory segment, theHeikki Linnakangas2008-09-3013-126/+78
* Make LC_COLLATE and LC_CTYPE database-level settings. Collation andHeikki Linnakangas2008-09-231-43/+2
* Change hash indexes to store only the hash code rather than the whole indexedTom Lane2008-09-156-72/+223
* Initialize the minimum frozen Xid in vac_update_datfrozenxid usingAlvaro Herrera2008-09-112-2/+7
* Fix a couple of problems pointed out by Fujii Masao in the 2008-Apr-05 patchTom Lane2008-09-081-22/+70
* Fix strategy propagation to scanEntry for partial match by moving propagationTeodor Sigaev2008-09-042-9/+3
* Fix possible duplicate tuples while GiST scan. Now page is processedTeodor Sigaev2008-08-232-90/+114
* Introduce the concept of relation forks. An smgr relation can now consistHeikki Linnakangas2008-08-118-82/+126