summaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeBitmapHeapscan.c
Commit message (Expand)AuthorAgeFilesLines
* Allow bitmap scans to operate as index-only scans when possible.Tom Lane2017-11-011-39/+126
* Improve comments for parallel executor estimation functions.Robert Haas2017-10-281-1/+2
* Separate reinitialization of shared parallel-scan state from ExecReScan.Tom Lane2017-08-301-17/+25
* Move ExecProcNode from dispatch to function pointer based model.Andres Freund2017-07-301-2/+5
* Move interrupt checking from ExecProcNode() to executor nodes.Andres Freund2017-07-301-0/+3
* Phase 2 of pgindent updates.Tom Lane2017-06-211-6/+6
* Don't be so trusting that shm_toc_lookup() will always succeed.Tom Lane2017-06-051-1/+1
* Post-PG 10 beta1 pgindent runBruce Momjian2017-05-171-2/+3
* Fix thinko in BitmapAdjustPrefetchIterator.Robert Haas2017-04-041-1/+1
* Faster expression evaluation and targetlist projection.Andres Freund2017-03-251-11/+6
* Silence compiler warnings in BitmapHeapNext().Tom Lane2017-03-081-2/+2
* Support parallel bitmap heap scans.Robert Haas2017-03-081-44/+378
* Refactor bitmap heap scan in preparation for parallel support.Robert Haas2017-03-021-60/+88
* Consistently declare timestamp variables as TimestampTz.Tom Lane2017-02-231-0/+2
* Remove obsoleted code relating to targetlist SRF evaluation.Andres Freund2017-01-191-2/+0
* Update copyright via script for 2017Bruce Momjian2017-01-031-1/+1
* Revert no-op changes to BufferGetPage()Kevin Grittner2016-04-201-2/+2
* Modify BufferGetPage() to prepare for "snapshot too old" featureKevin Grittner2016-04-081-2/+2
* Update copyright for 2016Bruce Momjian2016-01-021-1/+1
* Allow per-tablespace effective_io_concurrencyAlvaro Herrera2015-09-081-8/+27
* pgindent run for 9.5Bruce Momjian2015-05-231-1/+1
* Use outerPlanState macro instead of referring to leffttree.Robert Haas2015-05-041-2/+4
* Update copyright for 2015Bruce Momjian2015-01-061-1/+1
* pgindent run for 9.4Bruce Momjian2014-05-061-2/+2
* Introduce logical decoding.Robert Haas2014-03-031-2/+1
* Make bitmap heap scans show exact/lossy block info in EXPLAIN ANALYZE.Robert Haas2014-01-131-0/+7
* Update copyright for 2014Bruce Momjian2014-01-071-1/+1
* Adjust HeapTupleSatisfies* routines to take a HeapTuple.Robert Haas2013-07-221-0/+1
* Use an MVCC snapshot, rather than SnapshotNow, for catalog scans.Robert Haas2013-07-021-4/+4
* Incidental cleanup of matviews code.Tom Lane2013-04-271-1/+1
* Update copyrights for 2013Bruce Momjian2013-01-011-1/+1
* Run pgindent on 9.2 source tree in preparation for first 9.3Bruce Momjian2012-06-101-1/+2
* Update copyright notices for year 2012.Bruce Momjian2012-01-011-1/+1
* Miscellaneous cleanup to silence compiler warnings seen on Mingw.Andrew Dunstan2011-12-101-0/+4
* Make EXPLAIN ANALYZE report the numbers of rows rejected by filter steps.Tom Lane2011-09-221-0/+1
* Remove unnecessary #include references, per pgrminclude script.Bruce Momjian2011-09-011-1/+0
* Move Trigger and TriggerDesc structs out of rel.h into a new reltrigger.hAlvaro Herrera2011-07-041-0/+1
* Grab predicate locks on matching tuples in a lossy bitmap heap scan.Heikki Linnakangas2011-06-291-1/+11
* Avoid having two copies of the HOT-chain search logic.Robert Haas2011-06-271-1/+3
* Remove another no-longer-needed inclusion of predicate.h.Tom Lane2011-06-161-1/+0
* Implement genuine serializable isolation level.Heikki Linnakangas2011-02-081-1/+2
* Stamp copyrights for year 2011.Bruce Momjian2011-01-011-1/+1
* Remove cvs keywords from all files.Magnus Hagander2010-09-201-1/+1
* Make NestLoop plan nodes pass outer-relation variables into their innerTom Lane2010-07-121-19/+8
* Update copyright for the year 2010.Bruce Momjian2010-01-021-2/+2
* Re-implement EvalPlanQual processing to improve its performance and eliminateTom Lane2009-10-261-53/+27
* Remove no-longer-needed ExecCountSlots infrastructure.Tom Lane2009-09-271-10/+1
* 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian2009-06-111-24/+27
* Tweak order of operations in BitmapHeapNext() to avoid the case of prefetchingTom Lane2009-01-121-10/+13
* Implement prefetching via posix_fadvise() for bitmap index scans. A newTom Lane2009-01-121-1/+95