aboutsummaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeAgg.c
Commit message (Expand)AuthorAge
* Avoid reference to nonexistent array element in ExecInitAgg().Tom Lane2023-01-02
* Skip allocating hash table in EXPLAIN-only mode.Heikki Linnakangas2020-11-20
* Fix minor violations of FunctionCallInvoke usage protocol.Tom Lane2020-04-21
* Fix edge case leading to agg transitions skipping ExecAggTransReparent() calls.Andres Freund2020-01-20
* Fix slot type handling for Agg nodes performing internal sorts.Andres Freund2019-07-25
* Fix array size allocation for HashAggregate hash keys.Andrew Gierth2019-05-23
* Phase 2 pgindent run for v12.Tom Lane2019-05-22
* Initial pgindent run for v12.Tom Lane2019-05-22
* Minimally fix partial aggregation for aggregates that don't have one argument.Andres Freund2019-05-19
* Fix two memory leaks around force-storing tuples in slots.Andres Freund2019-04-19
* Collations with nondeterministic comparisonPeter Eisentraut2019-03-22
* Reset, not recreate, execGrouping.c style hashtables.Andres Freund2019-02-09
* Refactor planner's header files.Tom Lane2019-01-29
* Change function call information to be variable length.Andres Freund2019-01-26
* Update copyright for 2019Bruce Momjian2019-01-02
* Remove WITH OIDS support, change oid catalog column visibility.Andres Freund2018-11-20
* Make TupleTableSlots extensible, finish split of existing slot type.Andres Freund2018-11-16
* Introduce notion of different types of slots (without implementing them).Andres Freund2018-11-15
* Don't require return slots for nodes without projection.Andres Freund2018-11-09
* Move TupleTableSlots boolean member into one flag variable.Andres Freund2018-10-15
* Split ExecStoreTuple into ExecStoreHeapTuple and ExecStoreBufferHeapTuple.Andres Freund2018-09-25
* Improve spelling of new FINALFUNC_MODIFY aggregate attribute.Tom Lane2018-05-21
* Fix type checking for support functions of parallel VARIADIC aggregates.Tom Lane2018-05-15
* Post-feature-freeze pgindent run.Tom Lane2018-04-26
* Allow tupleslots to have a fixed tupledesc, use in executor nodes.Andres Freund2018-02-16
* Do execGrouping.c via expression eval machinery, take two.Andres Freund2018-02-16
* Revert "Do execGrouping.c via expression eval machinery."Andres Freund2018-02-15
* Do execGrouping.c via expression eval machinery.Andres Freund2018-02-15
* Support parallel btree index builds.Robert Haas2018-02-02
* Replace AclObjectKind with ObjectTypePeter Eisentraut2018-01-19
* Expression evaluation based aggregate transition invocation.Andres Freund2018-01-09
* Update copyright for 2018Bruce Momjian2018-01-02
* Simplify representation of aggregate transition values a bit.Andres Freund2018-01-02
* Fix handling of NULLs returned by aggregate combine functions.Andres Freund2017-11-23
* Change TRUE/FALSE to true/falsePeter Eisentraut2017-11-08
* Treat aggregate direct arguments as per-agg data not per-trans data.Tom Lane2017-10-16
* Allow the built-in ordered-set aggregates to share transition state.Tom Lane2017-10-16
* Repair breakage of aggregate FILTER option.Tom Lane2017-10-16
* Restore nodeAgg.c's ability to check for improperly-nested aggregates.Tom Lane2017-10-15
* Explicitly track whether aggregate final functions modify transition state.Tom Lane2017-10-14
* Fix AggGetAggref() so it won't lie to aggregate final functions.Tom Lane2017-10-12
* Prevent sharing transition states between ordered-set aggregates.Tom Lane2017-10-11
* Change tupledesc->attrs[n] to TupleDescAttr(tupledesc, n).Andres Freund2017-08-20
* Move ExecProcNode from dispatch to function pointer based model.Andres Freund2017-07-30
* Move interrupt checking from ExecProcNode() to executor nodes.Andres Freund2017-07-30
* Phase 3 of pgindent updates.Tom Lane2017-06-21
* Phase 2 of pgindent updates.Tom Lane2017-06-21
* Initial pgindent run with pg_bsd_indent version 2.0.Tom Lane2017-06-21
* Post-PG 10 beta1 pgindent runBruce Momjian2017-05-17
* Improve castNode notation by introducing list-extraction-specific variants.Tom Lane2017-04-10