summaryrefslogtreecommitdiff
path: root/src/backend/access/heap/heapam.c
Commit message (Expand)AuthorAgeFilesLines
* Catcaches can now store negative entries as well as positive ones, toTom Lane2002-03-031-7/+7
* Commit to match discussed elog() changes. Only update is that LOG isBruce Momjian2002-03-021-39/+39
* Add more sanity-checking to PageAddItem and PageIndexTupleDelete,Tom Lane2002-01-151-7/+1
* New pgindent run with fixes suggested by Tom. Patch manually reviewed,Bruce Momjian2001-11-051-10/+10
* Fix problem reported by Alex Korn: if a relation has been dropped andTom Lane2001-11-021-82/+78
* pgindent run on all C files. Java run to follow. initdb/regressionBruce Momjian2001-10-251-40/+45
* Ensure that all TransactionId comparisons are encapsulated in macrosTom Lane2001-08-231-7/+9
* Make OIDs optional, per discussions in pghackers. WITH OIDS is still theTom Lane2001-08-101-21/+17
* Create a new HeapTupleSatisfiesVacuum() routine in tqual.c that embodies theTom Lane2001-07-121-6/+1
* Fix my old fault(returns auto variable reference).Hiroshi Inoue2001-07-061-2/+3
* Further work on connecting the free space map (which is still just aTom Lane2001-06-291-20/+14
* Install infrastructure for shared-memory free space map. Doesn't actuallyTom Lane2001-06-271-24/+12
* Statistical system views (yet without the config stuff, butJan Wieck2001-06-221-2/+34
* Remove RelationGetBufferWithBuffer(), which is horribly confused aboutTom Lane2001-06-091-403/+81
* Prevent forced blank line before comment block in pgindent.Bruce Momjian2001-05-171-2/+2
* Spacing cleanup.Bruce Momjian2001-05-171-2/+1
* Repair race condition introduced into heap_update() in 7.1 ---Tom Lane2001-05-161-12/+64
* Modify RelationGetBufferForTuple() so that we only do lseek and lockTom Lane2001-05-121-2/+2
* Fix unportable assumptions about alignment of local char[n] variables.Tom Lane2001-03-251-29/+58
* Remove dashes in comments that don't need them, rewrap with pgindent.Bruce Momjian2001-03-221-188/+146
* pgindent run. Make it all clean.Bruce Momjian2001-03-221-185/+199
* Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.Bruce Momjian2001-01-241-2/+2
* Fix all the places that called heap_update() and heap_delete() withoutTom Lane2001-01-231-5/+82
* Tweak heap_update/delete so that we do not hold the buffer context lockTom Lane2001-01-151-47/+68
* Add more critical-section calls: all code sections that hold spinlocksTom Lane2001-01-121-7/+7
* Correct nasty error in heap_update: it was releasing the buffer refcountTom Lane2001-01-071-11/+37
* 1. WAL needs in zero-ed content of newly initialized page.Vadim B. Mikheev2000-12-301-24/+45
* Fixed misprint in heap update WALoging.Vadim B. Mikheev2000-12-301-2/+6
* New WAL version - CRC and data blocks backup.Vadim B. Mikheev2000-12-281-288/+254
* Fix portability problems recently exposed by regression tests on Alphas.Tom Lane2000-12-271-2/+2
* Resolve complie error(was my fault).Hiroshi Inoue2000-12-111-3/+2
* *redo: Heap move* neglects to set t_cmin for MOVED_IN tuples.Hiroshi Inoue2000-12-111-1/+3
* Disable elog(ERROR|FATAL) in signal handlers inVadim B. Mikheev2000-12-031-4/+8
* Remove VARLENA_FIXED_SIZE hack, which is irreversibly broken now thatTom Lane2000-11-301-10/+3
* No more #ifdef XLOG.Vadim B. Mikheev2000-11-301-20/+2
* Put external declarations into header files.Peter Eisentraut2000-11-211-5/+1
* Silence gcc warnings.Tom Lane2000-11-201-3/+3
* Minor cleanup of tableOid-related coding.Tom Lane2000-11-141-10/+7
* Make DROP TABLE rollback-able: postpone physical file delete until commit.Tom Lane2000-11-081-26/+10
* WAL fixes.Vadim B. Mikheev2000-10-291-42/+94
* WAL miscVadim B. Mikheev2000-10-241-50/+125
* WALVadim B. Mikheev2000-10-211-2/+53
* redo/undo support functions and cleanups.Vadim B. Mikheev2000-10-201-96/+157
* WALVadim B. Mikheev2000-10-131-3/+5
* WALVadim B. Mikheev2000-10-131-2/+18
* Btree WAL logging.Vadim B. Mikheev2000-10-041-5/+6
* Heap redo/undo (except for tuple moving used by vacuum).Vadim B. Mikheev2000-09-071-44/+441
* Fix tuptoaster bugs induced by making bytea toastable. Durn thing wasTom Lane2000-08-041-6/+8
* Modify heap_open()/heap_openr() API per pghackers discussion of 11 July.Tom Lane2000-08-031-26/+80
* 2nd try for the index tuple toast hack. This time as suggestedJan Wieck2000-07-221-50/+1