summaryrefslogtreecommitdiff
path: root/src/include/nodes
AgeCommit message (Expand)Author
2003-06-06Implement outer-level aggregates to conform to the SQL spec, withTom Lane
2003-05-28Fix some planner performance problems with large WHERE clauses, byTom Lane
2003-05-28Replace functional-index facility with expressional indexes. Any columnTom Lane
2003-05-06Implement feature of new FE/BE protocol whereby RowDescription identifiesTom Lane
2003-05-02Portal and memory management infrastructure for extended query protocol.Tom Lane
2003-04-08First phase of work on array improvements. ARRAY[x,y,z] constructorTom Lane
2003-03-27This patch implements holdable cursors, following the proposalBruce Momjian
2003-03-20Add ALTER TABLE <tablename> CLUSTER ON <indexname>Bruce Momjian
2003-03-20Todo items:Bruce Momjian
2003-03-11Implement SQL92-compatible FIRST, LAST, ABSOLUTE n, RELATIVE n optionsTom Lane
2003-03-10Restructure parsetree representation of DECLARE CURSOR: now it's aTom Lane
2003-03-09Revise tuplestore and nodeMaterial so that we don't have to read theTom Lane
2003-02-16COALESCE() and NULLIF() are now first-class expressions, not macrosTom Lane
2003-02-13Code for WITHOUT OIDS.Bruce Momjian
2003-02-10Get rid of last few vestiges of parsetree dependency on grammar tokenTom Lane
2003-02-09Create a distinction between Lists of integers and Lists of OIDs, to getTom Lane
2003-02-09Make further use of new bitmapset code: executor's chgParam, extParam,Tom Lane
2003-02-08Replace planner's representation of relation sets, per pghackers discussion.Tom Lane
2003-02-03Determine the set of constraints applied to a domain at executorTom Lane
2003-02-03Tweak planner and executor to avoid doing ExecProject() in table scanTom Lane
2003-01-27Upgrade cost estimation for joins, per discussion with Bradley Baetz.Tom Lane
2003-01-24Modify planner's implied-equality-deduction code so that when a setTom Lane
2003-01-23Grant options, and cascading revoke. Grant options are allowed only forPeter Eisentraut
2003-01-23Change CREATE TABLE AS / SELECT INTO to create the new table with OIDs,Tom Lane
2003-01-20IN clauses appearing at top level of WHERE can now be handled as joins.Tom Lane
2003-01-15Allow merge and hash joins to occur on arbitrary expressions (anything notTom Lane
2003-01-12Revise cost_qual_eval() to compute both startup (one-time) and per-tupleTom Lane
2003-01-12First cut at implementing IN (and NOT IN) via hashtables. There isTom Lane
2003-01-10Create a new file executor/execGrouping.c to centralize utility routinesTom Lane
2003-01-10Further tweaking of parsetree & plantree representation of SubLinks.Tom Lane
2003-01-09Adjust parser so that 'x NOT IN (subselect)' is converted toTom Lane
2003-01-06ALTER DOMAIN OWNER, from Rod Taylor.Tom Lane
2002-12-30Cause FETCH 1 to return the current cursor row, or zero if atBruce Momjian
2002-12-18Update EvalPlanQual() to work with new executor memory management method.Tom Lane
2002-12-16Code review for palloc0 patch --- avoid dangerous and unnecessaryTom Lane
2002-12-15Tweak default memory context allocation policy so that a context is notTom Lane
2002-12-15Revise executor APIs so that all per-query state structure is built inTom Lane
2002-12-14Clean up plantree representation of SubPlan-s --- SubLink does not appearTom Lane
2002-12-13Phase 3 of read-only-plans project: ExecInitExpr now builds expressionTom Lane
2002-12-12Preliminary code review for domain CHECK constraints patch: add documentation,Tom Lane
2002-12-12Phase 2 of read-only-plans project: restructure expression-tree nodesTom Lane
2002-12-06Re-addd Rod's ALTER DOMAIN patch.Bruce Momjian
2002-12-06Back out ALTER DOMAIN patch until missing file appears.Bruce Momjian
2002-12-06ALTER DOMAIN .. SET / DROP NOT NULLBruce Momjian
2002-12-05Phase 1 of read-only-plans project: cause executor state nodes to pointTom Lane
2002-11-30Code review for IS DISTINCT FROM patch. Fix incorrect constant-foldingTom Lane
2002-11-30Be more realistic about plans involving Materialize nodes: take theirTom Lane
2002-11-30Upgrade planner and executor to allow multiple hash keys for a hash join,Tom Lane
2002-11-27Improve some comments.Tom Lane
2002-11-26Use Params, rather than run-time-modified Const nodes, to handleTom Lane