]> granicus.if.org Git - postgresql/history - src/backend/access/nbtree/nbtree.c
Skip ambulkdelete scan if there's nothing to delete and the index is not
[postgresql] / src / backend / access / nbtree / nbtree.c
2006-02-11 Tom LaneSkip ambulkdelete scan if there's nothing to delete...
2006-02-11 Bruce MomjianRevert based on Tom's recommendation:
2006-02-11 Bruce MomjianAllow VACUUM to complete faster by avoiding scanning...
2006-01-25 Tom LaneRemove the no-longer-useful BTItem/BTItemData level...
2005-12-07 Tom LanePush the responsibility for handling ignore_killed_tupl...
2005-11-22 Bruce MomjianRe-run pgindent, fixing a problem where comment lines...
2005-11-06 Tom LaneAdd defenses to btree and hash index AMs to do simple...
2005-10-15 Bruce MomjianStandard pgindent run for 8.1.
2005-09-02 Tom LaneClean up a couple of ad-hoc computations of the maximum...
2005-05-11 Neil ConwayThis patch refactors away some duplicated code in the...
2005-05-07 Tom LaneRepair very-low-probability race condition between...
2005-05-06 Tom LaneFor some reason access/tupmacs.h has been #including...
2005-03-27 Tom LaneFirst steps towards index scans with heap access decoup...
2005-03-21 Tom LaneConvert index-related tuple handling routines from...
2005-03-20 Tom LaneRemove unnecessary calls of FlushRelationBuffers: there...
2004-12-31 PostgreSQL DaemonTag appropriate files for rc3
2004-12-01 Tom LaneChange planner to use the current true disk file size...
2004-11-17 Neil ConwayMicro-optimization of markpos() and restrpos() in btree...
2004-11-11 Neil ConwayRemove obsolete comment from btbuild() and hashbuild...
2004-08-29 Bruce MomjianUpdate copyright to 2004.
2004-07-17 Tom LaneInvent ResourceOwner mechanism as per my recent proposa...
2004-06-05 Tom LaneTweak palloc/repalloc to allow zero bytes to be request...
2004-06-02 Tom LaneAdjust btree index build to not use shared buffers...
2004-05-31 Tom LaneMinor code rationalization: FlushRelationBuffers just...
2004-05-08 Tom LaneGet rid of rd_nblocks field in relcache entries. Turns...
2004-04-21 Tom LaneTweak indexscan and seqscan code to arrange that steps...
2004-02-10 Tom LaneCentralize implementation of delay code by creating...
2004-02-10 Tom LaneRestructure smgr API as per recent proposal. smgr...
2004-02-06 Jan WieckCost based vacuum delay feature.
2004-02-03 Tom LaneRename SortMem and VacuumMem to work_mem and maintenanc...
2004-01-07 Neil ConwayMore janitorial work: remove the explicit casting of...
2003-11-29 PostgreSQL Daemon$Header: -> $PostgreSQL Changes ...
2003-11-12 Tom LaneCross-data-type comparisons are now indexable by btrees...
2003-09-29 Tom LaneAdjust btree index build procedure so that the btree...
2003-08-04 Bruce MomjianUpdate copyrights to 2003.
2003-08-04 Bruce Momjianpgindent run.
2003-07-21 Tom LaneError message editing in backend/access.
2003-03-23 Tom LaneAdjust amrescan code so that it's allowed to call index...
2003-03-04 Tom LaneReimplement free-space-map management as per recent...
2003-02-24 Tom LaneDuring VACUUM FULL, truncate off any deletable pages...
2003-02-23 Tom LaneRemove no-longer-used FixBTree GUC variable.
2003-02-23 Tom LaneAdjust btbulkdelete logic so that only one WAL record...
2003-02-23 Tom LaneFirst cut at recycling space in btree indexes. Still...
2003-02-22 Tom LaneMore infrastructure for btree compaction project. ...
2003-02-21 Tom LaneMake btree index structure adjustments and WAL logging...
2002-11-15 Bruce MomjianRename show_btree_build_stats to log_btree_build_stats
2002-10-20 Tom LaneFix potential problem with btbulkdelete deleting an...
2002-09-04 Bruce Momjianpgindent run.
2002-06-20 Bruce MomjianUpdate copyright to 2002.
2002-05-24 Tom LaneMark index entries "killed" when they are no longer...
2002-05-20 Tom LaneRestructure indexscan API (index_beginscan, index_getne...
2002-03-02 Bruce MomjianCommit to match discussed elog() changes. Only update...
2002-01-06 Tom LaneAdd CHECK_FOR_INTERRUPTS() in various strategic spots...
2001-11-23 Tom LaneFix boundary condition in btbulkdelete: don't examine...
2001-11-10 Tom LaneClean up usage-statistics display code (ShowUsage and...
2001-11-05 Bruce MomjianNew pgindent run with fixes suggested by Tom. Patch...
2001-10-25 Bruce Momjianpgindent run on all C files. Java run to follow. ...
2001-07-15 Tom LaneRestructure index AM interface for index building and...
2001-05-18 Bruce MomjianSmall code cleanups,formatting.
2001-05-07 Tom LaneRewrite of planner statistics-gathering code. ANALYZE...
2001-03-22 Bruce Momjianpgindent run. Make it all clean.
2001-02-07 Vadim B. MikheevRuntime btree recovery is now ON by default.
2001-01-29 Tom LaneClean up handling of tuple descriptors so that result...
2001-01-26 Vadim B. MikheevFirst step in attempt to fix tree at runtime: create...
2001-01-24 Bruce MomjianChange Copyright from PostgreSQL, Inc to PostgreSQL...
2000-12-29 Vadim B. Mikheevnbtree_xlog_newroot: set meta flag in meta page opaque.
2000-12-28 Vadim B. MikheevNew WAL version - CRC and data blocks backup.
2000-11-30 Vadim B. MikheevNo more #ifdef XLOG.
2000-11-21 Peter EisentrautPut external declarations into header files.
2000-11-08 Tom LaneMake DROP TABLE rollback-able: postpone physical file...
2000-11-01 Vadim B. MikheevForgot to check page LSN and unlock buffer in btree_xlo...
2000-10-29 Vadim B. MikheevWAL fixes.
2000-10-21 Vadim B. MikheevWAL
2000-10-20 Vadim B. Mikheevredo/undo support functions and cleanups.
2000-10-13 Vadim B. MikheevWAL
2000-10-13 Vadim B. MikheevWAL
2000-08-10 Hiroshi InoueCREATE btree INDEX takes dead tuples into account when...
2000-07-21 Tom LaneMajor overhaul of btree index code. Eliminate special...
2000-07-14 Tom LaneCleanup of code for creating index entries. Functional...
2000-07-12 Tom LaneFirst stage of reclaiming memory in executor by resetti...
2000-06-17 Tom LaneGet rid of IndexIsUniqueNoCache() kluge by the simple...
2000-06-15 Bruce MomjianFinal #include cleanup.
2000-06-14 Tom LaneI had overlooked the fact that some fmgr-callable funct...
2000-06-13 Tom LaneAnother batch of fmgr updates. I think I have gotten...
2000-05-31 Peter EisentrautThe heralded `Grand Unified Configuration scheme' ...
2000-04-12 Bruce MomjianYe-old pgindent run. Same 4-space tabs.
2000-02-18 Hiroshi InoueImplement reindex command
2000-01-26 Bruce MomjianAdd:
2000-01-19 Tom LaneFix handling of NULL constraint conditions: per SQL92...
1999-12-10 Bruce MomjianRename several destroy* functions/tags to drop*.
1999-12-01 Bruce MomjianMention index name when reporting corruption.
1999-11-14 Bruce MomjianAdd index recreation suggestion to end of world error...
1999-10-17 Tom LaneFinal stage of psort reconstruction work: replace psort...
1999-09-18 Tom LaneMega-commit to make heap_open/heap_openr/heap_close...
1999-07-17 Bruce Momjian Move some system includes into c.h, and remove duplicates.
1999-07-16 Bruce MomjianFinal cleanup.
1999-07-15 Bruce MomjianChange #include's to use <> and "" as appropriate.
1999-07-15 Bruce MomjianRemove unused #includes in *.c files.
1999-06-07 Vadim B. MikheevConcurrency... Highest one...
1999-05-25 Bruce MomjianMake 0x007f -> (unsigned)0x7f to make pgindent happy.
next