]> granicus.if.org Git - postgresql/history - src/backend/optimizer/plan/setrefs.c
Add a concept of "placeholder" variables to the planner. These are variables
[postgresql] / src / backend / optimizer / plan / setrefs.c
2008-10-21 Tom LaneAdd a concept of "placeholder" variables to the planner...
2008-10-04 Tom LaneImplement SQL-standard WITH clauses, including WITH...
2008-09-09 Tom LaneImprove the plan cache invalidation mechanism to make...
2008-08-25 Tom LaneMove exprType(), exprTypmod(), expression_tree_walker...
2008-06-17 Tom LaneFix the code that adds regclass constants to a plan...
2008-01-01 Bruce MomjianUpdate copyrights in source tree to 2008.
2007-11-24 Tom LaneChange fix_scan_expr() to avoid copying the input node...
2007-11-15 Bruce MomjianRe-run pgindent with updated list of typedefs. (Update...
2007-11-15 Bruce Momjianpgindent run for 8.3.
2007-10-11 Tom LaneFix the plan-invalidation mechanism to treat regclass...
2007-06-11 Tom LaneSupport UPDATE/DELETE WHERE CURRENT OF cursor_name...
2007-04-30 Tom LaneMarginal performance hack: use a dedicated routine...
2007-04-06 Tom LaneDon't remove the 'alias' field from flattened rangetabl...
2007-02-23 Tom LaneNow that plans have flat rangetable lists, it's a lot...
2007-02-22 Tom LaneChange Agg and Group nodes so that Vars contained in...
2007-02-22 Tom LaneTurn the rangetable used by the executor into a flat...
2007-02-19 Tom LanePut function expressions and values lists into Function...
2007-02-16 Tom LaneFix another problem in 8.2 changes that allowed "one...
2007-01-22 Tom LaneAdd COST and ROWS options to CREATE/ALTER FUNCTION...
2007-01-05 Bruce MomjianUpdate CVS HEAD for 2007 copyright. Back branches...
2006-10-04 Bruce Momjianpgindent run for 8.2.
2006-08-28 Tom LaneTweak trivial_subqueryscan() to consider a SubqueryScan...
2006-08-12 Tom LaneAdd INSERT/UPDATE/DELETE RETURNING, with basic docs...
2006-08-02 Joe ConwayAdd support for multi-row VALUES clauses as part of...
2006-07-14 Bruce MomjianRemove 576 references of include files that were not...
2006-03-05 Bruce MomjianUpdate copyright for 2006. Update scripts.
2006-02-05 Tom LaneImprove my initial, rather hacky implementation of...
2005-11-26 Tom LaneTeach tid-scan code to make use of "ctid = ANY (array...
2005-11-22 Bruce MomjianRe-run pgindent, fixing a problem where comment lines...
2005-11-03 Tom LaneThinking further, it seems we had better also copy...
2005-11-03 Tom LaneFix the recently-added code that eliminates unnecessary...
2005-10-15 Bruce MomjianStandard pgindent run for 8.1.
2005-09-05 Tom LaneBack out prior patch and instead just suppress Subquery...
2005-09-05 Tom LaneFor non-projecting plan node types such as Limit, set_p...
2005-08-27 Tom LaneFix two separate bugs in setrefs.c. set_subqueryscan_r...
2005-06-10 Tom LaneRevise searching of subplan target lists to use somethi...
2005-05-22 Tom LaneTeach the planner to remove SubqueryScan nodes from...
2005-04-25 Tom LaneRemove support for OR'd indexscans internal to a single...
2005-04-22 Tom LaneFirst cut at planner support for bitmap index scans...
2005-04-19 Tom LaneCreate executor and planner-backend support for decoupl...
2005-04-06 Tom LaneMerge Resdom nodes into TargetEntry nodes to simplify...
2004-12-31 PostgreSQL DaemonTag appropriate files for rc3
2004-08-29 Bruce MomjianPgindent run for 8.0.
2004-08-29 Bruce MomjianUpdate copyright to 2004.
2004-05-26 Neil ConwayReimplement the linked list data structure used through...
2004-05-11 Tom LaneFix oversights in processing of LIMIT expressions durin...
2004-01-06 Tom LaneInstead of rechecking lossy index operators by putting...
2003-11-29 PostgreSQL Daemon$Header: -> $PostgreSQL Changes ...
2003-11-25 Tom LaneGet rid of hashkeys field of Hash plan node, since...
2003-08-08 Bruce MomjianAnother pgindent run with updated typedefs.
2003-08-04 Bruce MomjianUpdate copyrights to 2003.
2003-08-04 Bruce Momjianpgindent run.
2003-07-25 Tom LaneError message editing in backend/optimizer, backend...
2003-06-29 Tom LaneSupport expressions of the form 'scalar op ANY (array...
2003-02-16 Tom LaneCOALESCE() and NULLIF() are now first-class expressions...
2003-01-20 Tom LaneIN clauses appearing at top level of WHERE can now...
2003-01-15 Tom LaneNow that switch_outer processing no longer relies on...
2003-01-15 Tom LaneAllow merge and hash joins to occur on arbitrary expres...
2003-01-13 Tom LaneReconsider mechanism for marking sub-selects that are...
2003-01-10 Tom LaneFurther tweaking of parsetree & plantree representation...
2002-12-14 Tom LaneClean up plantree representation of SubPlan-s --- SubLi...
2002-12-12 Tom LanePhase 2 of read-only-plans project: restructure express...
2002-12-05 Tom LanePhase 1 of read-only-plans project: cause executor...
2002-11-30 Tom LaneCode review for IS DISTINCT FROM patch. Fix incorrect...
2002-11-19 Tom LaneAdd an at-least-marginally-plausible method of estimati...
2002-09-04 Bruce Momjianpgindent run.
2002-09-02 Bruce MomjianRemove sys/types.h in files that include postgres.h...
2002-06-20 Bruce MomjianUpdate copyright to 2002.
2002-05-18 Tom LaneChange set_plan_references and join_references to take...
2002-05-18 Tom LaneAdd missing fix_expr_references() step for the funcexpr...
2002-05-12 Tom LaneFirst pass at set-returning-functions in FROM, by Joe...
2002-04-28 Tom LaneSecond try at fixing join alias variables. Instead...
2002-03-12 Tom LaneRestructure representation of join alias variables...
2001-11-05 Bruce MomjianNew pgindent run with fixes suggested by Tom. Patch...
2001-10-30 Tom LaneFix problems with subselects used in GROUP BY expressio...
2001-03-22 Bruce Momjianpgindent run. Make it all clean.
2001-01-24 Bruce MomjianChange Copyright from PostgreSQL, Inc to PostgreSQL...
2001-01-09 Tom LaneFix oversight in planning of GROUP queries: when an...
2000-10-26 Tom LaneRe-implement LIMIT/OFFSET as a plan node type, instead...
2000-10-05 Tom LaneReimplementation of UNION/INTERSECT/EXCEPT. INTERSECT...
2000-09-29 Tom LaneSubselects in FROM clause, per ISO syntax: FROM (SELECT...
2000-09-12 Tom LaneFirst cut at full support for OUTER JOINs. There are...
2000-06-04 Tom LaneRepair bug reported by ldm@apartia.com: Append nodes...
2000-05-30 Bruce MomjianRemove unused include files. Do not touch /port or...
2000-04-12 Bruce MomjianYe-old pgindent run. Same 4-space tabs.
2000-04-04 Tom LaneFix extremely nasty little bug observed when a sub...
2000-01-26 Bruce MomjianAdd:
1999-11-23 Bruce MomjianTid access method feature from Hiroshi Inoue, Inoue...
1999-10-30 Tom LaneSkip invoking set_uppernode_references() for a RESULT...
1999-08-22 Tom LaneFurther planner/optimizer cleanups. Move all set_tlist...
1999-08-21 Tom LaneMajor revision of sort-node handling: push knowledge...
1999-08-18 Tom LaneRemove extraneous SeqScan node that make_noname was...
1999-08-09 Tom LaneClean up routines in setrefs.c by replacing individual...
1999-07-16 Bruce MomjianFinal cleanup.
1999-07-15 Bruce MomjianRemove unused #includes in *.c files.
1999-07-15 Bruce MomjianClean up #include in /include directory. Add scripts...
1999-06-06 Tom LaneFix problems with grouping/aggregation in queries that use
1999-05-26 Bruce MomjianMake functions static or NOT_USED as appropriate.
1999-05-25 Bruce MomjianAnother pgindent run. Sorry folks.
1999-05-25 Bruce Momjianpgindent run over code.
next