summaryrefslogtreecommitdiff
path: root/src/backend/executor/nodeAgg.c
AgeCommit message (Expand)Author
2006-06-21Remove ancient kluge that kept nodeAgg.c from crashing on UPDATEs involvingTom Lane
2006-04-04Modify all callers of datatype input and receive functions so that if theseTom Lane
2006-03-05Update copyright for 2006. Update scripts.Bruce Momjian
2006-02-28Extend the ExecInitNode API so that plan nodes receive a set of flagTom Lane
2005-11-22Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian
2005-10-15Standard pgindent run for 8.1.Bruce Momjian
2005-06-28Replace pg_shadow and pg_group by new role-capable catalogs pg_authidTom Lane
2005-05-06For some reason access/tupmacs.h has been #including utils/memutils.h,Tom Lane
2005-03-29Convert oidvector and int2vector into variable-length arrays. ThisTom Lane
2005-03-22Use InitFunctionCallInfoData() macro instead of MemSet in performanceTom Lane
2005-03-16Revise TupleTableSlot code to avoid unnecessary construction and disassemblyTom Lane
2005-03-12Adjust the API for aggregate function calls so that a C-coded functionTom Lane
2005-01-28Improve planner's estimation of the space needed for HashAgg plans:Tom Lane
2005-01-27Check that aggregate creator has the right to execute the transitionTom Lane
2004-12-31Tag appropriate files for rc3PostgreSQL Daemon
2004-08-29Pgindent run for 8.0.Bruce Momjian
2004-08-29Update copyright to 2004.Bruce Momjian
2004-07-10Test HAVING condition before computing targetlist of an Aggregate node.Tom Lane
2004-06-06Infrastructure for I/O of composite types: arrange for the I/O routinesTom Lane
2004-05-30Use the new List API function names throughout the backend, and disable theNeil Conway
2004-05-26Reimplement the linked list data structure used throughout the backend.Neil Conway
2004-03-13Repair memory leakage introduced into the non-hashed aggregate case byTom Lane
2004-02-03Rename SortMem and VacuumMem to work_mem and maintenance_work_mem.Tom Lane
2003-11-29$Header: -> $PostgreSQL Changes ...PostgreSQL Daemon
2003-08-19Improve dynahash.c's API so that caller can specify the comparison functionTom Lane
2003-08-08Another pgindent run with updated typedefs.Bruce Momjian
2003-08-04Update copyrights to 2003.Bruce Momjian
2003-08-04pgindent run.Bruce Momjian
2003-08-01Adjust 'permission denied' messages to be more useful and consistent.Tom Lane
2003-07-21Error message editing in backend/executor.Tom Lane
2003-07-01Aggregates can be polymorphic, using polymorphic implementation functions.Tom Lane
2003-06-25Back out array mega-patch.Bruce Momjian
2003-06-24Array mega-patch.Bruce Momjian
2003-06-22Revise hash join and hash aggregation code to use the same datatype-Tom Lane
2003-06-06Implement outer-level aggregates to conform to the SQL spec, withTom Lane
2003-05-30Small performance improvement for hash joins and hash aggregation:Tom Lane
2003-02-09Make further use of new bitmapset code: executor's chgParam, extParam,Tom Lane
2003-02-04Detect duplicate aggregate calls and evaluate only one copy. ThisTom Lane
2003-01-10Create a new file executor/execGrouping.c to centralize utility routinesTom Lane
2002-12-15Revise executor APIs so that all per-query state structure is built inTom Lane
2002-12-13Phase 3 of read-only-plans project: ExecInitExpr now builds expressionTom Lane
2002-12-12Phase 2 of read-only-plans project: restructure expression-tree nodesTom Lane
2002-12-05Phase 1 of read-only-plans project: cause executor state nodes to pointTom Lane
2002-11-29Tighten selection of equality and ordering operators for groupingTom Lane
2002-11-19Add an at-least-marginally-plausible method of estimating the numberTom Lane
2002-11-13Add new palloc0 call as merge of palloc and MemSet(0).Bruce Momjian
2002-11-11Back out use of palloc0 in place if palloc/MemSet. Seems constant lenBruce Momjian
2002-11-10Merge palloc()/MemSet(0) calls into a single palloc0() call.Bruce Momjian
2002-11-06Phase 2 of hashed-aggregation project. nodeAgg.c now knows how to doTom Lane
2002-11-06First phase of implementing hash-based grouping/aggregation. An AGG planTom Lane