summaryrefslogtreecommitdiff
path: root/src/backend/executor/execUtils.c
Commit message (Expand)AuthorAgeFilesLines
* Revert "Move PartitionPruneInfo out of plan nodes into PlannedStmt"Alvaro Herrera2023-05-041-1/+0
* Fix various typosDavid Rowley2023-04-181-1/+1
* Fix row tracking in pg_stat_statements with extended query protocolMichael Paquier2023-04-061-0/+1
* Fix some more cases of missed GENERATED-column updates.Tom Lane2023-03-061-2/+2
* Fill EState.es_rteperminfos more systematically.Tom Lane2023-03-061-1/+5
* Remove local optimizations of empty Bitmapsets into null pointers.Tom Lane2023-03-021-9/+1
* Make new GENERATED-expressions code more bulletproof.Tom Lane2023-01-151-9/+4
* Fix calculation of which GENERATED columns need to be updated.Tom Lane2023-01-051-17/+8
* Update copyright for 2023Bruce Momjian2023-01-021-1/+1
* Remove new structure member from ResultRelInfo.Etsuro Fujita2022-12-081-1/+3
* Rework query relation permission checkingAlvaro Herrera2022-12-061-44/+90
* Generalize ri_RootToPartitionMap to use for non-partition childrenAlvaro Herrera2022-12-021-9/+48
* Move PartitioPruneInfo out of plan nodes into PlannedStmtAlvaro Herrera2022-12-011-0/+1
* Fix handling of pending inserts in nodeModifyTable.c.Etsuro Fujita2022-11-251-0/+1
* Update copyright for 2022Bruce Momjian2022-01-071-1/+1
* Remove arbitrary 64K-or-so limit on rangetable size.Tom Lane2021-09-151-3/+3
* Postpone some stuff out of ExecInitModifyTable.Tom Lane2021-04-061-0/+26
* Make ExecGetInsertedCols() and friends more robust and improve comments.Heikki Linnakangas2021-02-151-7/+21
* Fix permission checks on constraint violation errors on partitions.Heikki Linnakangas2021-02-081-0/+86
* Update copyright for 2021Bruce Momjian2021-01-021-1/+1
* Remove es_result_relation_info from EState.Heikki Linnakangas2020-10-141-1/+0
* Create ResultRelInfos later in InitPlan, index them by RT index.Heikki Linnakangas2020-10-131-18/+39
* Initial pgindent and pgperltidy run for v13.Tom Lane2020-05-141-3/+3
* Create memory context for HashAgg with a reasonable maxBlockSize.Jeff Davis2020-04-071-15/+56
* Go back to returning int from ereport auxiliary functions.Tom Lane2020-03-251-4/+4
* Improve the internal implementation of ereport().Tom Lane2020-03-241-4/+4
* Update copyrights for 2020Bruce Momjian2020-01-011-1/+1
* Reorder EPQ work, to fix rowmark related bugs and improve efficiency.Andres Freund2019-09-091-2/+0
* Remove EState.es_range_table_array.Tom Lane2019-08-121-18/+5
* Represent Lists as expansible arrays, not chains of cons-cells.Tom Lane2019-07-151-1/+1
* Fix more typos and inconsistencies in the treeMichael Paquier2019-06-171-1/+1
* Make queries' locking of indexes more consistent.Tom Lane2019-04-041-0/+4
* tableam: Add and use scan APIs.Andres Freund2019-03-111-3/+4
* Allow ATTACH PARTITION with only ShareUpdateExclusiveLock.Robert Haas2019-03-071-0/+8
* Store tuples for EvalPlanQual in slots, rather than as HeapTuples.Andres Freund2019-03-011-2/+1
* Use slots in trigger infrastructure, except for the actual invocation.Andres Freund2019-02-261-3/+66
* Replace uses of heap_open et al with the corresponding table_* function.Andres Freund2019-01-211-3/+3
* Replace heapam.h includes with {table, relation}.h where applicable.Andres Freund2019-01-211-1/+1
* Don't include heapam.h from others headers.Andres Freund2019-01-141-0/+1
* Update copyright for 2019Bruce Momjian2019-01-021-1/+1
* Remove WITH OIDS support, change oid catalog column visibility.Andres Freund2018-11-201-10/+0
* Introduce notion of different types of slots (without implementing them).Andres Freund2018-11-151-3/+44
* Don't require return slots for nodes without projection.Andres Freund2018-11-091-3/+5
* Avoid O(N^2) cost in ExecFindRowMark().Tom Lane2018-10-081-2/+7
* Restore sane locking behavior during parallel query.Tom Lane2018-10-061-9/+23
* Remove more redundant relation locking during executor startup.Tom Lane2018-10-061-60/+0
* In the executor, use an array of pointers to access the rangetable.Tom Lane2018-10-041-4/+45
* Centralize executor's opening/closing of Relations for rangetable entries.Tom Lane2018-10-041-24/+36
* Change executor to just Assert that table locks were already obtained.Tom Lane2018-10-031-4/+7
* Change rewriter/planner/executor/plancache to depend on RTE rellockmode.Tom Lane2018-10-021-35/+8