summaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeIndexscan.c
Commit message (Expand)AuthorAgeFilesLines
* Don't require return slots for nodes without projection.Andres Freund2018-11-091-3/+4
* Restore sane locking behavior during parallel query.Tom Lane2018-10-061-1/+1
* Allow btree comparison functions to return INT_MIN.Tom Lane2018-10-051-3/+4
* Centralize executor's opening/closing of Relations for rangetable entries.Tom Lane2018-10-041-9/+2
* Split ExecStoreTuple into ExecStoreHeapTuple and ExecStoreBufferHeapTuple.Andres Freund2018-09-251-11/+9
* Rephrase a few comments for clarity.Heikki Linnakangas2018-07-191-2/+2
* Indexes with INCLUDE columns and their support in B-treeTeodor Sigaev2018-04-071-3/+5
* Allow tupleslots to have a fixed tupledesc, use in executor nodes.Andres Freund2018-02-161-25/+20
* Introduce ExecQualAndReset() helper.Andres Freund2018-01-291-8/+3
* Avoid crash during EvalPlanQual recheck of an inner indexscan.Tom Lane2018-01-271-0/+45
* Update copyright for 2018Bruce Momjian2018-01-021-1/+1
* Provide DSM segment to ExecXXXInitializeWorker functions.Andres Freund2017-11-161-2/+3
* Change TRUE/FALSE to true/falsePeter Eisentraut2017-11-081-4/+4
* 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-23/+15
* 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/+7
* Be more consistent about errors for opfamily member lookup failures.Tom Lane2017-07-241-0/+3
* Phase 3 of pgindent updates.Tom Lane2017-06-211-1/+1
* Phase 2 of pgindent updates.Tom Lane2017-06-211-9/+9
* Don't be so trusting that shm_toc_lookup() will always succeed.Tom Lane2017-06-051-1/+1
* Faster expression evaluation and targetlist projection.Andres Freund2017-03-251-15/+9
* Fix parallel index and index-only scans to fall back to serial.Robert Haas2017-03-081-32/+58
* Add optimizer and executor support for parallel index scans.Robert Haas2017-02-151-16/+137
* Remove obsoleted code relating to targetlist SRF evaluation.Andres Freund2017-01-191-8/+3
* Update copyright via script for 2017Bruce Momjian2017-01-031-1/+1
* Properly initialize SortSupport for ORDER BY rechecks in nodeIndexscan.c.Tom Lane2016-06-051-2/+13
* Revert CREATE INDEX ... INCLUDING ...Teodor Sigaev2016-04-081-5/+3
* CREATE INDEX ... INCLUDING (column[, ...])Teodor Sigaev2016-04-081-3/+5
* Restructure index access method API to hide most of it at the C level.Tom Lane2016-01-171-2/+3
* Update copyright for 2016Bruce Momjian2016-01-021-1/+1
* Fix rescan of IndexScan node with the new lossy GiST distance functions.Heikki Linnakangas2015-05-251-0/+8
* pgindent run for 9.5Bruce Momjian2015-05-231-3/+3
* Still more fixes for lossy-GiST-distance-functions patch.Tom Lane2015-05-231-0/+6
* More fixes for lossy-GiST-distance-functions patch.Tom Lane2015-05-211-24/+33
* Fix typo in comment.Heikki Linnakangas2015-05-181-2/+2
* Fix failure to copy IndexScan.indexorderbyops in copyfuncs.c.Tom Lane2015-05-171-8/+12
* Fix datatype confusion with the new lossy GiST distance functions.Heikki Linnakangas2015-05-151-0/+5
* Allow GiST distance function to return merely a lower-bound.Heikki Linnakangas2015-05-151-3/+376
* Update copyright for 2015Bruce Momjian2015-01-061-1/+1
* pgindent run for 9.4Bruce Momjian2014-05-061-2/+2
* Update copyright for 2014Bruce Momjian2014-01-071-1/+1
* Incidental cleanup of matviews code.Tom Lane2013-04-271-1/+1
* Update copyrights for 2013Bruce Momjian2013-01-011-1/+1
* Update copyright notices for year 2012.Bruce Momjian2012-01-011-1/+1
* Teach btree to handle ScalarArrayOpExpr quals natively.Tom Lane2011-10-161-11/+64
* Rearrange the implementation of index-only scans.Tom Lane2011-10-111-125/+17
* Improve index-only scans to avoid repeated access to the index page.Tom Lane2011-10-091-1/+1
* Support index-only scans using the visibility map to avoid heap fetches.Tom Lane2011-10-071-9/+114
* Make EXPLAIN ANALYZE report the numbers of rows rejected by filter steps.Tom Lane2011-09-221-1/+5