summaryrefslogtreecommitdiff
path: root/src/backend/optimizer/plan/setrefs.c
Commit message (Expand)AuthorAgeFilesLines
* pgindent run for 9.0Bruce Momjian2010-02-261-5/+5
* Wrap calls to SearchSysCache and related functions using macros.Robert Haas2010-02-141-4/+2
* Extend the set of frame options supported for window functions.Tom Lane2010-02-121-2/+18
* Do parse analysis of an EXPLAIN's contained statement during the normalTom Lane2010-01-151-5/+19
* Update copyright for the year 2010.Bruce Momjian2010-01-021-2/+2
* While doing the final setrefs.c pass over a plan tree, try to match upTom Lane2009-11-161-5/+67
* Re-implement EvalPlanQual processing to improve its performance and eliminateTom Lane2009-10-261-10/+18
* Support SQL-compliant triggers on columns, ie fire only if certain columnsTom Lane2009-10-141-2/+3
* Move the handling of SELECT FOR UPDATE locking and rechecking out ofTom Lane2009-10-121-6/+52
* Split the processing of INSERT/UPDATE/DELETE operations out of execMain.c.Tom Lane2009-10-101-4/+27
* 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian2009-06-111-14/+14
* Support column-level privileges, as required by SQL standard.Tom Lane2009-01-221-2/+3
* Update copyright for 2009.Bruce Momjian2009-01-011-2/+2
* Support window functions a la SQL:2008.Tom Lane2008-12-281-1/+7
* Add a concept of "placeholder" variables to the planner. These are variablesTom Lane2008-10-211-7/+75
* Implement SQL-standard WITH clauses, including WITH RECURSIVE.Tom Lane2008-10-041-2/+30
* Improve the plan cache invalidation mechanism to make it invalidate plansTom Lane2008-09-091-96/+189
* Move exprType(), exprTypmod(), expression_tree_walker(), and related routinesTom Lane2008-08-251-2/+2
* Fix the code that adds regclass constants to a plan's list of relation OIDsTom Lane2008-06-171-5/+16
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-011-2/+2
* Change fix_scan_expr() to avoid copying the input node tree in the common caseTom Lane2007-11-241-2/+47
* Re-run pgindent with updated list of typedefs. (Updated README shouldBruce Momjian2007-11-151-28/+28
* pgindent run for 8.3.Bruce Momjian2007-11-151-70/+75
* Fix the plan-invalidation mechanism to treat regclass constants that refer toTom Lane2007-10-111-78/+167
* Support UPDATE/DELETE WHERE CURRENT OF cursor_name, per SQL standard.Tom Lane2007-06-111-1/+10
* Marginal performance hack: use a dedicated routine instead of copyObjectTom Lane2007-04-301-4/+20
* Don't remove the 'alias' field from flattened rangetable entries;Tom Lane2007-04-061-4/+4
* Now that plans have flat rangetable lists, it's a lot easier to get EXPLAIN toTom Lane2007-02-231-12/+61
* Change Agg and Group nodes so that Vars contained in their targetlistsTom Lane2007-02-221-17/+8
* Turn the rangetable used by the executor into a flat list, and avoid storingTom Lane2007-02-221-533/+511
* Put function expressions and values lists into FunctionScan and ValuesScanTom Lane2007-02-191-27/+12
* Fix another problem in 8.2 changes that allowed "one-time" qual conditions toTom Lane2007-02-161-1/+9
* Add COST and ROWS options to CREATE/ALTER FUNCTION, plus underlying pg_procTom Lane2007-01-221-3/+2
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-051-2/+2
* pgindent run for 8.2.Bruce Momjian2006-10-041-9/+9
* Tweak trivial_subqueryscan() to consider a SubqueryScan's targetlistTom Lane2006-08-281-8/+24
* Add INSERT/UPDATE/DELETE RETURNING, with basic docs and regression tests.Tom Lane2006-08-121-35/+102
* Add support for multi-row VALUES clauses as part of INSERT statementsJoe Conway2006-08-021-1/+19
* Remove 576 references of include files that were not needed.Bruce Momjian2006-07-141-2/+1
* Update copyright for 2006. Update scripts.Bruce Momjian2006-03-051-2/+2
* Improve my initial, rather hacky implementation of joins to appendTom Lane2006-02-051-3/+20
* Teach tid-scan code to make use of "ctid = ANY (array)" clauses, so thatTom Lane2005-11-261-9/+8
* Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian2005-11-221-5/+5
* Thinking further, it seems we had better also copy down resorigtbl/resorigcolTom Lane2005-11-031-3/+6
* Fix the recently-added code that eliminates unnecessary SubqueryScan nodesTom Lane2005-11-031-1/+16
* Standard pgindent run for 8.1.Bruce Momjian2005-10-151-79/+79
* Back out prior patch and instead just suppress SubqueryScan eliminationTom Lane2005-09-051-40/+16
* For non-projecting plan node types such as Limit, set_plan_referencesTom Lane2005-09-051-12/+28
* Fix two separate bugs in setrefs.c. set_subqueryscan_references needsTom Lane2005-08-271-40/+32
* Revise searching of subplan target lists to use something more efficientTom Lane2005-06-101-194/+248