summaryrefslogtreecommitdiff
path: root/src/backend/nodes
AgeCommit message (Expand)Author
2003-03-20Todo items:Bruce Momjian
2003-03-10Restructure parsetree representation of DECLARE CURSOR: now it's aTom Lane
2003-03-05Turns out new IN implementation has got some problems in an UPDATE orTom Lane
2003-02-16COALESCE() and NULLIF() are now first-class expressions, not macrosTom Lane
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-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-22Improve print_expr() a little. It's still not very bright though.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-10Further tweaking of parsetree & plantree representation of SubLinks.Tom Lane
2003-01-09Adjust parser so that 'x NOT IN (subselect)' is converted toTom Lane
2002-12-17To suppress memory leakage in long-lived Lists, lremove() should pfreeTom Lane
2002-12-16Code review for palloc0 patch --- avoid dangerous and unnecessaryTom 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-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-25Remove unused constisset and constiscast fields of Const nodes. CleanTom Lane
2002-11-25Restructure outfuncs and readfuncs to use macros in the same style asTom Lane
2002-11-25Restructure the code in copyfuncs and equalfuncs to put much heavierTom Lane
2002-11-24Restructure planning of nestloop inner indexscans so that the set of usableTom Lane
2002-11-23This patch implements FOR EACH STATEMENT triggers, per my email toBruce Momjian
2002-11-19Add an at-least-marginally-plausible method of estimating the numberTom Lane
2002-11-15Add DOMAIN check constraints.Bruce Momjian
2002-11-11Code review for ON COMMIT patch. Make the actual on-commit action happenTom Lane
2002-11-10Add palloc0 function to inline MemSet for newNode 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
2002-10-14Adjust handling of command status strings in the presence of rules,Tom Lane
2002-10-11Oops, back out newNode changes. We are not ready for that yet.Bruce Momjian
2002-10-11Prevent tv_sec from becoming negative in connection timeout code.Bruce Momjian
2002-09-22Replace pg_attribute.attisinherited with attislocal and attinhcountTom Lane
2002-09-18Extend pg_cast castimplicit column to a three-way value; this allows usTom Lane
2002-09-04pgindent run.Bruce Momjian
2002-09-02Remove sys/types.h in files that include postgres.h, and hence c.h,Bruce Momjian
2002-09-02CREATE OR REPLACE VIEW, CREATE OR REPLACE RULE.Tom Lane
2002-08-31Code review for domain-constraints patch. Use a new ConstraintTest nodeTom Lane
2002-08-30Add attisinherited column to pg_attribute; use it to guard againstTom Lane