summaryrefslogtreecommitdiff
path: root/src/include/executor/executor.h
AgeCommit message (Expand)Author
2019-07-08Fix inconsistencies in the codeMichael Paquier
2019-06-08Fix assorted inconsistencies.Amit Kapila
2019-05-22Phase 2 pgindent run for v12.Tom Lane
2019-05-22Initial pgindent run for v12.Tom Lane
2019-03-24tableam: Add tuple_{insert, delete, update, lock} and use.Andres Freund
2019-03-22Collations with nondeterministic comparisonPeter Eisentraut
2019-03-01Store tuples for EvalPlanQual in slots, rather than as HeapTuples.Andres Freund
2019-02-27Use slots in trigger infrastructure, except for the actual invocation.Andres Freund
2019-02-09Allow to reset execGrouping.c style tuple hashtables.Andres Freund
2019-01-29Rename nodes/relation.h to nodes/pathnodes.h.Tom Lane
2019-01-15Don't include heapam.h from others headers.Andres Freund
2019-01-02Update copyright for 2019Bruce Momjian
2018-12-22Add some const decorationsPeter Eisentraut
2018-11-21Remove WITH OIDS support, change oid catalog column visibility.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-16Move TupleTableSlots boolean member into one flag variable.Andres Freund
2018-10-06Remove more redundant relation locking during executor startup.Tom Lane
2018-10-04In the executor, use an array of pointers to access the rangetable.Tom Lane
2018-10-04Centralize executor's opening/closing of Relations for rangetable entries.Tom Lane
2018-06-11Don't needlessly check the partition contraint twiceAlvaro Herrera
2018-04-26Post-feature-freeze pgindent run.Tom Lane
2018-04-15Reorganize partitioning codeAlvaro Herrera
2018-02-17Allow tupleslots to have a fixed tupledesc, use in executor nodes.Andres Freund
2018-02-16Do execGrouping.c via expression eval machinery, take two.Andres Freund
2018-02-16Revert "Do execGrouping.c via expression eval machinery."Andres Freund
2018-02-16Do execGrouping.c via expression eval machinery.Andres Freund
2018-01-29Introduce ExecQualAndReset() helper.Andres Freund
2018-01-09Expression evaluation based aggregate transition invocation.Andres Freund
2018-01-05Factor error generation out of ExecPartitionCheck.Robert Haas
2018-01-03Update copyright for 2018Bruce Momjian
2017-12-21Rearrange execution of PARAM_EXTERN Params for plpgsql's benefit.Tom Lane
2017-12-13Allow executor nodes to change their ExecProcNode function.Andres Freund
2017-11-25Avoid projecting tuples unnecessarily in Gather and Gather Merge.Robert Haas
2017-11-15Centralize executor-related partitioning code.Robert Haas
2017-10-12Use ResultRelInfo ** rather than ResultRelInfo * for tuple routing.Robert Haas
2017-10-08Reduce memory usage of targetlist SRFs.Andres Freund
2017-09-07Reduce excessive dereferencing of function pointersPeter Eisentraut
2017-09-07Even if some partitions are foreign, allow tuple routing.Robert Haas
2017-08-29Push tuple limits through Gather and Gather Merge.Robert Haas
2017-08-18Fix interaction of triggers, partitioning, and EXPLAIN ANALYZE.Robert Haas
2017-07-30Move ExecProcNode from dispatch to function pointer based model.Andres Freund
2017-07-18Use a real RT index when setting up partition tuple routing.Robert Haas
2017-06-21Phase 3 of pgindent updates.Tom Lane
2017-06-21Phase 2 of pgindent updates.Tom Lane
2017-06-21Initial pgindent run with pg_bsd_indent version 2.0.Tom Lane
2017-05-17Post-PG 10 beta1 pgindent runBruce Momjian
2017-05-17Check relkind of tables in CREATE/ALTER SUBSCRIPTIONPeter Eisentraut
2017-05-16Fix relcache leak when row triggers on partitions are fired by COPY.Robert Haas
2017-04-18Provide an error cursor for "can't call an SRF here" errors.Tom Lane