summaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeAgg.c
AgeCommit message (Expand)Author
2019-02-09Reset, not recreate, execGrouping.c style hashtables.Andres Freund
2019-01-29Refactor planner's header files.Tom Lane
2019-01-26Change function call information to be variable length.Andres Freund
2019-01-02Update copyright for 2019Bruce Momjian
2018-11-20Remove WITH OIDS support, change oid catalog column visibility.Andres Freund
2018-11-16Make TupleTableSlots extensible, finish split of existing slot type.Andres Freund
2018-11-15Introduce notion of different types of slots (without implementing them).Andres Freund
2018-11-09Don't require return slots for nodes without projection.Andres Freund
2018-10-15Move TupleTableSlots boolean member into one flag variable.Andres Freund
2018-09-25Split ExecStoreTuple into ExecStoreHeapTuple and ExecStoreBufferHeapTuple.Andres Freund
2018-05-21Improve spelling of new FINALFUNC_MODIFY aggregate attribute.Tom Lane
2018-05-15Fix type checking for support functions of parallel VARIADIC aggregates.Tom Lane
2018-04-26Post-feature-freeze pgindent run.Tom Lane
2018-02-16Allow 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-15Revert "Do execGrouping.c via expression eval machinery."Andres Freund
2018-02-15Do execGrouping.c via expression eval machinery.Andres Freund
2018-02-02Support parallel btree index builds.Robert Haas
2018-01-19Replace AclObjectKind with ObjectTypePeter Eisentraut
2018-01-09Expression evaluation based aggregate transition invocation.Andres Freund
2018-01-02Update copyright for 2018Bruce Momjian
2018-01-02Simplify representation of aggregate transition values a bit.Andres Freund
2017-11-23Fix handling of NULLs returned by aggregate combine functions.Andres Freund
2017-11-08Change TRUE/FALSE to true/falsePeter Eisentraut
2017-10-16Treat aggregate direct arguments as per-agg data not per-trans data.Tom Lane
2017-10-16Allow the built-in ordered-set aggregates to share transition state.Tom Lane
2017-10-16Repair breakage of aggregate FILTER option.Tom Lane
2017-10-15Restore nodeAgg.c's ability to check for improperly-nested aggregates.Tom Lane
2017-10-14Explicitly track whether aggregate final functions modify transition state.Tom Lane
2017-10-12Fix AggGetAggref() so it won't lie to aggregate final functions.Tom Lane
2017-10-11Prevent sharing transition states between ordered-set aggregates.Tom Lane
2017-08-20Change tupledesc->attrs[n] to TupleDescAttr(tupledesc, n).Andres Freund
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-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-04-10Improve castNode notation by introducing list-extraction-specific variants.Tom Lane
2017-04-06Allow avoiding tuple copy within tuplesort_gettupleslot().Andres Freund
2017-03-27Support hashed aggregation with grouping sets.Andrew Gierth
2017-03-25Faster expression evaluation and targetlist projection.Andres Freund
2017-03-14Spelling fixesPeter Eisentraut
2017-02-06Fix typos in comments.Heikki Linnakangas
2017-01-26Use the new castNode() macro in a number of places.Andres Freund
2017-01-19Remove obsoleted code relating to targetlist SRF evaluation.Andres Freund
2017-01-06Repair commit b81b5a96f424531b97cdd1dba97d9d1b9c9d372e.Robert Haas
2017-01-03Update copyright via script for 2017Bruce Momjian
2016-12-20Fix minor oversights in nodeAgg.c.Tom Lane
2016-12-20Fix sharing Agg transition state of DISTINCT or ordered aggs.Heikki Linnakangas