summaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeIndexscan.c
AgeCommit message (Expand)Author
2024-01-04Update copyright for 2024Bruce Momjian
2023-09-28Remove obsolete executor cleanup codeAmit Langote
2023-01-31Remove dead NoMovementScanDirection codeDavid Rowley
2023-01-02Update copyright for 2023Bruce Momjian
2022-05-12Pre-beta mechanical code beautification.Tom Lane
2022-02-14Fix memory leak in IndexScan node with reorderingAlexander Korotkov
2022-01-08Update copyright for 2022Bruce Momjian
2021-01-02Update copyright for 2021Bruce Momjian
2020-01-01Update copyrights for 2020Bruce Momjian
2019-09-09Reorder EPQ work, to fix rowmark related bugs and improve efficiency.Andres Freund
2019-05-22Phase 2 pgindent run for v12.Tom Lane
2019-05-22Initial pgindent run for v12.Tom Lane
2019-04-19Fix slot type issue for fuzzy distance index scan over out-of-core table AM.Andres Freund
2019-04-04Make queries' locking of indexes more consistent.Tom Lane
2019-03-11tableam: Add and use scan APIs.Andres Freund
2019-03-01Store tuples for EvalPlanQual in slots, rather than as HeapTuples.Andres Freund
2019-02-28Standardize some more loops that chase down parallel lists.Tom Lane
2019-01-29Refactor planner's header files.Tom Lane
2019-01-22Rename RelationData.rd_amroutine to rd_indam.Andres Freund
2019-01-02Update copyright for 2019Bruce Momjian
2018-11-17Make TupleTableSlots extensible, finish split of existing slot type.Andres Freund
2018-11-16Introduce notion of different types of slots (without implementing them).Andres Freund
2018-11-10Don't require return slots for nodes without projection.Andres Freund
2018-10-06Restore sane locking behavior during parallel query.Tom Lane
2018-10-05Allow btree comparison functions to return INT_MIN.Tom Lane
2018-10-04Centralize executor's opening/closing of Relations for rangetable entries.Tom Lane
2018-09-25Split ExecStoreTuple into ExecStoreHeapTuple and ExecStoreBufferHeapTuple.Andres Freund
2018-07-19Rephrase a few comments for clarity.Heikki Linnakangas
2018-04-07Indexes with INCLUDE columns and their support in B-treeTeodor Sigaev
2018-02-17Allow tupleslots to have a fixed tupledesc, use in executor nodes.Andres Freund
2018-01-29Introduce ExecQualAndReset() helper.Andres Freund
2018-01-27Avoid crash during EvalPlanQual recheck of an inner indexscan.Tom Lane
2018-01-03Update copyright for 2018Bruce Momjian
2017-11-17Provide DSM segment to ExecXXXInitializeWorker functions.Andres Freund
2017-11-08Change TRUE/FALSE to true/falsePeter Eisentraut
2017-10-28Improve comments for parallel executor estimation functions.Robert Haas
2017-08-30Separate reinitialization of shared parallel-scan state from ExecReScan.Tom Lane
2017-07-30Move ExecProcNode from dispatch to function pointer based model.Andres Freund
2017-07-30Move interrupt checking from ExecProcNode() to executor nodes.Andres Freund
2017-07-24Be more consistent about errors for opfamily member lookup failures.Tom Lane
2017-06-21Phase 3 of pgindent updates.Tom Lane
2017-06-21Phase 2 of pgindent updates.Tom Lane
2017-06-05Don't be so trusting that shm_toc_lookup() will always succeed.Tom Lane
2017-03-25Faster expression evaluation and targetlist projection.Andres Freund
2017-03-08Fix parallel index and index-only scans to fall back to serial.Robert Haas
2017-02-15Add optimizer and executor support for parallel index scans.Robert Haas
2017-01-19Remove obsoleted code relating to targetlist SRF evaluation.Andres Freund
2017-01-03Update copyright via script for 2017Bruce Momjian
2016-06-05Properly initialize SortSupport for ORDER BY rechecks in nodeIndexscan.c.Tom Lane
2016-04-08Revert CREATE INDEX ... INCLUDING ...Teodor Sigaev