summaryrefslogtreecommitdiff
path: root/src/backend/access/nbtree/nbtree.c
Commit message (Expand)AuthorAgeFilesLines
* Move log_newpage and log_newpage_buffer to xlog.c.Heikki Linnakangas2014-07-311-1/+0
* Avoid copying index tuples when building an index.Robert Haas2014-07-011-9/+2
* pgindent run for 9.4Bruce Momjian2014-05-061-4/+4
* Fix typos in comment.Heikki Linnakangas2014-04-231-2/+2
* Fix race condition in B-tree page deletion.Heikki Linnakangas2014-03-141-1/+1
* Remove unnecessary relcache flushes after changing btree metapages.Tom Lane2014-02-051-8/+0
* Fix multiple bugs in index page locking during hot-standby WAL replay.Tom Lane2014-01-141-28/+41
* Update copyright for 2014Bruce Momjian2014-01-071-1/+1
* Don't include unused space in LOG_NEWPAGE records.Heikki Linnakangas2013-12-041-1/+1
* Add buffer_std flag to MarkBufferDirtyHint().Jeff Davis2013-06-171-1/+1
* Allow I/O reliability checks using 16-bit checksumsSimon Riggs2013-03-221-1/+2
* Provide database object names as separate fields in error messages.Tom Lane2013-01-291-2/+2
* Update copyrights for 2013Bruce Momjian2013-01-011-1/+1
* Fix btmarkpos/btrestrpos to handle array keys.Tom Lane2012-09-271-0/+8
* Split heapam_xlog.h from heapam.hAlvaro Herrera2012-08-281-0/+1
* Run pgindent on 9.2 source tree in preparation for first 9.3Bruce Momjian2012-06-101-2/+2
* Cosmetic cleanup for commit a760893dbda9934e287789d54bbd3c4ca3914ce0.Tom Lane2012-02-211-5/+6
* Update copyright notices for year 2012.Bruce Momjian2012-01-011-1/+1
* Replace simple constant pg_am.amcanreturn with an AM support function.Tom Lane2011-12-181-0/+11
* Avoid assuming that index-only scan data matches the index's rowtype.Tom Lane2011-10-161-1/+4
* Teach btree to handle ScalarArrayOpExpr quals natively.Tom Lane2011-10-161-49/+100
* Add comment on why pulling data from a "name" index column can't crash.Tom Lane2011-10-111-0/+10
* Improve index-only scans to avoid repeated access to the index page.Tom Lane2011-10-091-92/+28
* Support index-only scans using the visibility map to avoid heap fetches.Tom Lane2011-10-071-0/+92
* Remove unnecessary #include references, per pgrminclude script.Bruce Momjian2011-09-011-4/+0
* pgindent run of recent SSI changes. Also, remove an unnecessary #include.Heikki Linnakangas2011-06-161-1/+0
* pgindent run before PG 9.1 beta 1.Bruce Momjian2011-04-101-1/+2
* Fix bugs in Serializable Snapshot Isolation.Heikki Linnakangas2011-03-011-1/+0
* Un-break building with BTREE_BUILD_STATS.Tom Lane2011-02-181-0/+1
* Implement genuine serializable isolation level.Heikki Linnakangas2011-02-081-0/+2
* Stamp copyrights for year 2011.Bruce Momjian2011-01-011-1/+1
* Support unlogged tables.Robert Haas2010-12-291-0/+31
* Create core infrastructure for KNNGIST.Tom Lane2010-12-021-19/+20
* Remove cvs keywords from all files.Magnus Hagander2010-09-201-1/+1
* Derive latestRemovedXid for btree deletes by reading heap pages. TheSimon Riggs2010-03-281-3/+3
* pgindent run for 9.0Bruce Momjian2010-02-261-26/+28
* Remove old-style VACUUM FULL (which was known for a little while asTom Lane2010-02-081-42/+7
* Update copyright for the year 2010.Bruce Momjian2010-01-021-2/+2
* Allow read only connections during recovery, known as Hot Standby.Simon Riggs2009-12-191-3/+63
* Support deferrable uniqueness constraints.Tom Lane2009-07-291-4/+5
* 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian2009-06-111-5/+4
* Improve the IndexVacuumInfo/IndexBulkDeleteResult API to allow somewhat saneTom Lane2009-06-061-4/+6
* Insert CHECK_FOR_INTERRUPTS() calls into btree and hash index scans at theTom Lane2009-05-051-4/+1
* Implement "fastupdate" support for GIN indexes, in which we try to accumulateTom Lane2009-03-241-1/+5
* Update copyright for 2009.Bruce Momjian2009-01-011-2/+2
* Rethink the way FSM truncation works. Instead of WAL-logging FSMHeikki Linnakangas2008-11-191-5/+2
* Prevent synchronous scan during GIN index build, because GIN is optimizedTom Lane2008-11-131-2/+2
* Unite ReadBufferWithFork, ReadBufferWithStrategy, and ZeroOrReadBufferHeikki Linnakangas2008-10-311-2/+3
* Index FSMs needs to be vacuumed as well. Report by Jeff Davis.Heikki Linnakangas2008-10-061-1/+4
* Rewrite the FSM. Instead of relying on a fixed-size shared memory segment, theHeikki Linnakangas2008-09-301-55/+25