]> granicus.if.org Git - postgresql/history - src/include/optimizer
Add 'output file' option for pg_dumpall, especially useful for Win32,
[postgresql] / src / include / optimizer /
2007-01-22 Tom LaneAdd COST and ROWS options to CREATE/ALTER FUNCTION...
2007-01-20 Tom LaneRefactor planner's pathkeys data structure to create...
2007-01-10 Tom LaneChange the planner-to-executor API so that the planner...
2007-01-05 Bruce MomjianUpdate CVS HEAD for 2007 copyright. Back branches...
2006-12-23 Tom LaneRestructure operator classes to allow improved handling...
2006-12-12 Tom LaneFix planner to do the right thing when a degenerate...
2006-10-04 Bruce Momjianpgindent run for 8.2.
2006-09-25 Tom LaneIncrease default value of effective_cache_size to 128MB...
2006-09-19 Tom LaneImprove usage of effective_cache_size parameter by...
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-31 Tom LaneChange the relation_open protocol so that we obtain...
2006-07-26 Peter EisentrautConvert effective_cache_size to an integer, for better...
2006-07-26 Bruce MomjianChange LIMIT/OFFSET to use int8
2006-07-22 Tom LaneIn the recent changes to make the planner account bette...
2006-07-15 Tom LaneFix some missing inclusions identified with new pgcheck...
2006-07-13 Bruce MomjianAllow include files to compile own their own.
2006-07-01 Tom LaneRevise the planner's handling of "pseudoconstant" WHERE...
2006-06-06 Tom LaneMake the planner estimate costs for nestloop inner...
2006-06-05 Tom LaneIncrease the default value of cpu_index_tuple_cost...
2006-06-05 Tom LaneAdd a GUC parameter seq_page_cost, and use that everywh...
2006-03-05 Bruce MomjianUpdate copyright for 2006. Update scripts.
2006-02-05 Tom LaneImprove my initial, rather hacky implementation of...
2006-02-04 Tom LaneFix constraint exclusion to work in inherited UPDATE...
2006-02-03 Tom LaneTeach planner to convert simple UNION ALL subqueries...
2006-02-03 Bruce MomjianUpdate random() usage so ranges are inclusive/exclusive...
2006-01-31 Tom LaneRestructure planner's handling of inheritance. Rather...
2006-01-29 Tom LaneFix code that checks to see if an index can be consider...
2006-01-25 Tom LaneAllow row comparisons to be used as indexscan qualifica...
2005-12-20 Tom LaneTeach planner how to rearrange join order for some...
2005-11-26 Tom LaneTeach tid-scan code to make use of "ctid = ANY (array...
2005-11-25 Tom LaneTeach planner and executor to handle ScalarArrayOpExpr...
2005-11-14 Tom LaneRestore the former RestrictInfo field valid_everywhere...
2005-10-15 Bruce MomjianStandard pgindent run for 8.1.
2005-09-28 Tom LaneRepair planning bug introduced in 7.4: outer-join ON...
2005-08-27 Tom LaneChange the division of labor between grouping_planner...
2005-08-22 Bruce Momjianenable_constraint_exclusion => constraint_exclusion
2005-08-18 Tom LaneFix up LIMIT/OFFSET planning so that we cope with non...
2005-07-28 Tom LaneFix a bunch of bad interactions between partial indexes...
2005-07-23 Tom LaneSimple constraint exclusion. For now, only child table...
2005-07-02 Tom LaneTeach planner about some cases where a restriction...
2005-06-10 Tom LaneSeparate predicate-testing code out of indxpath.c,...
2005-06-10 Tom LaneIf a LIMIT is applied to a UNION ALL query, plan each...
2005-06-09 Tom LaneSimplify the planner's join clause management by storin...
2005-06-05 Tom LaneRemove planner's private fields from Query struct,...
2005-05-22 Tom LaneTeach the planner to remove SubqueryScan nodes from...
2005-04-25 Tom LaneReplace slightly klugy create_bitmap_restriction()...
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-21 Tom LaneRethink original decision to use AND/OR Expr nodes...
2005-04-21 Tom LaneInstall some slightly realistic cost estimation for...
2005-04-19 Tom LaneCreate executor and planner-backend support for decoupl...
2005-04-12 Tom LaneFix oversight in MIN/MAX optimization: must not return...
2005-04-11 Tom LaneCreate the planner mechanism for optimizing simple...
2005-04-06 Tom LaneMerge Resdom nodes into TargetEntry nodes to simplify...
2005-03-28 Tom LaneRethink the order of expression preprocessing: eval_con...
2005-03-27 Tom LaneAdd a back-link from IndexOptInfo structs to their...
2005-03-26 Tom LaneExpand the 'special index operator' machinery to handle...
2005-03-17 Neil ConwayThis patch moves some code for preprocessing FOR UPDATE...
2005-03-10 Tom LaneMake the behavior of HAVING without GROUP BY conform...
2005-01-28 Tom LaneImprove planner's estimation of the space needed for...
2005-01-23 Tom LaneThe result of a FULL or RIGHT join can't be assumed...
2004-12-31 PostgreSQL DaemonTag appropriate files for rc3
2004-10-22 Tom LaneIn ALTER COLUMN TYPE, strip any implicit coercion opera...
2004-10-11 Tom LaneFix OR-index-scan planner to recognize that a partial...
2004-10-02 Tom LaneClean up handling of inherited-table update queries...
2004-08-29 Bruce MomjianPgindent run for 8.0.
2004-08-29 Bruce MomjianUpdate copyright to 2004.
2004-06-11 Tom LaneWhen using extended-query protocol, postpone planning...
2004-05-10 Tom LanePromote row expressions to full-fledged citizens of...
2004-04-07 Tom LaneExtend set-operation planning to keep track of the...
2004-03-14 Tom LaneTweak planner so that index expressions and predicates...
2004-02-17 Tom LaneMake use of statistics on index expressions. There...
2004-01-23 Tom LaneRevise GEQO planner to make use of some heuristic knowl...
2004-01-21 Tom LaneRepair error apparently introduced in the initial codin...
2004-01-18 Tom LaneWhen testing whether a sub-plan can do projection,...
2004-01-05 Tom LaneAdjust indexscan planning logic to keep RestrictInfo...
2004-01-05 Tom LaneImprove UniquePath logic to detect the case where the...
2004-01-05 Tom LaneAdd the ability to extract OR indexscan conditions...
2004-01-04 Tom LaneMerge restrictlist_selectivity into clauselist_selectiv...
2004-01-04 Tom LaneRewrite OR indexscan processing to be more flexible...
2003-12-30 Tom LaneAdjust the definition of RestrictInfo's left_relids...
2003-12-28 Tom LaneClean up the usage of canonicalize_qual(): in particula...
2003-11-29 PostgreSQL Daemonmake sure the $Id tags are converted to $PostgreSQL...
2003-09-07 Tom LaneRemove geqo_random_seed parameter. Having geqo reset...
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-14 Tom LaneMake cost estimates for SubqueryScan more realistic...
2003-06-29 Tom LaneRestructure building of join relation targetlists so...
2003-06-29 Tom LaneSupport expressions of the form 'scalar op ANY (array...
2003-06-25 Bruce MomjianBack out array mega-patch.
2003-06-24 Bruce MomjianArray mega-patch.
2003-06-15 Tom LaneAdjust nestloop-with-inner-indexscan plan generation...
2003-06-11 Bruce MomjianAdd missing DLLIMPORT for cpu_index_tuple_cost to
2003-06-06 Tom LaneImplement outer-level aggregates to conform to the...
2003-05-28 Tom LaneReplace functional-index facility with expressional...
2003-05-26 Tom LaneCause CHAR(n) to TEXT or VARCHAR conversion to automati...
2003-05-06 Tom LaneImplement feature of new FE/BE protocol whereby RowDesc...
2003-04-24 Tom LaneAdjust subquery qual pushdown rules so that we can...
next