OSDN Git Service

Restructure local-buffer handling per recent pghackers discussion.
[pg-rex/syncrep.git] / src / backend / optimizer /
2002-08-02 Tom LaneALTER TABLE DROP COLUMN works. Patch by Christopher...
2002-07-30 Tom LaneIf we're cleaning out _deadcode, might as well zap...
2002-07-24 Peter EisentrautRemove _deadcode.
2002-07-20 Bruce Momjianoid is needed, it is added at the end of the struct...
2002-07-20 Bruce MomjianThe attached patch fixes a build problem with GEQO...
2002-07-18 Bruce MomjianBack out BETWEEN node patch, was causing initdb failure.
2002-07-18 Bruce MomjianFinished the Between patch Christopher started.
2002-07-13 Tom LaneFix testing of partial-index predicates to work correct...
2002-07-06 Bruce MomjianI've fixed up the way domain constraints (not null...
2002-07-04 Thomas G. LockhartImplement the IS DISTINCT FROM operator per SQL99.
2002-06-26 Bruce MomjianThe attached patch fixes some spelling mistakes, makes the
2002-06-25 Bruce MomjianBack out cleanup patch. Got old version and needs...
2002-06-25 Bruce MomjianThe attached patch fixes some spelling mistakes, makes the
2002-06-20 Bruce MomjianUpdate copyright to 2002.
2002-06-16 Bruce MomjianRemove KSQO from GUC and move file to _deadcode.
2002-06-13 Tom LaneMake WHERE conditions pulled up from subqueries be...
2002-05-20 Tom LaneRestructure indexscan API (index_beginscan, index_getne...
2002-05-18 Tom LaneTeach query_tree_walker, query_tree_mutator, and SS_fin...
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-17 Tom LaneGet rid of the last few uses of typeidTypeName() rather...
2002-05-12 Tom LaneGet rid of long-since-vestigial Iter node type, in...
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-04-16 Tom LaneOperators live in namespaces. CREATE/DROP/COMMENT...
2002-04-12 Tom LaneChecking to decide whether relations are system relatio...
2002-04-11 Tom LaneRestructure representation of aggregate functions so...
2002-04-05 Tom LaneUndo not-so-hot decision to postpone insertion of defau...
2002-04-05 Tom LaneDivide functions into three volatility classes (immutab...
2002-04-02 Hiroshi InoueRemoved obsolete DROP_COLUMN_HACK stuff.
2002-03-22 Tom LaneA little further progress on schemas: push down RangeVa...
2002-03-21 Tom LaneFirst phase of SCHEMA changes, concentrating on fixing...
2002-03-20 Tom LaneCode review for DOMAIN patch.
2002-03-19 Bruce MomjianAdd DOMAIN support. Includes manual pages and regressi...
2002-03-12 Tom LaneRestructure representation of join alias variables...
2002-03-07 Bruce MomjianBack out domain patch until it works properly.
2002-03-06 Bruce MomjianOk. Updated patch attached.
2002-03-06 Bruce MomjianChange made to elog:
2002-03-05 Tom LanePrevious patch to mark UNION outputs with common typmod...
2002-03-02 Bruce MomjianCommit to match discussed elog() changes. Only update...
2002-03-01 Tom LaneFix thinko: cost_mergejoin must pay attention to which...
2002-03-01 Tom LaneSecond thoughts dept: arrange to cache mergejoin scan...
2002-03-01 Tom LaneTeach planner about the idea that a mergejoin won't...
2002-02-19 Tom LaneA bunch of changes aimed at reducing backend startup...
2002-01-03 Tom LaneShouldn't try to copy null datums with datumCopy.
2001-12-10 Tom LaneSuppress subquery pullup and pushdown when the subquery...
2001-11-30 Tom LaneRepair failure to mark an inserted Materialize node...
2001-11-12 Tom LaneIf the inputs of a UNION/INTERSECT/EXCEPT construct...
2001-11-11 Tom LaneIn find_mergeclauses_for_pathkeys, it's okay to return...
2001-11-11 Tom Lanesort_inner_and_outer needs a check to ensure that it...
2001-11-05 Bruce MomjianNew pgindent run with fixes suggested by Tom. Patch...
2001-11-02 Tom LaneAdd default expressions to INSERTs during planning...
2001-10-30 Tom LaneFix problems with subselects used in GROUP BY expressio...
2001-10-30 Bruce MomjianFix small problem Tom Lane found with pgindent run.
2001-10-28 Bruce MomjianAnother pgindent run. Fixes enum indenting, and improv...
2001-10-25 Bruce Momjianpgindent run on all C files. Java run to follow. ...
2001-10-18 Tom LaneExtend code that deduces implied equality clauses to...
2001-09-21 Tom LaneProduce slightly saner-looking EXPLAIN output for a...
2001-09-06 Tom LaneFix handling of pg_type.typdefault per bug report from...
2001-08-21 Tom LaneRestructure pg_opclass, pg_amop, and pg_amproc per...
2001-08-14 Tom LaneFix brokenness of nested EXCEPT/INTERSECT queries....
2001-08-06 Tom LaneModify partial-index-predicate applicability tester...
2001-07-31 Tom LaneFurther thought shows that has_distinct_on_clause(...
2001-07-31 Tom LaneFix optimizer to not try to push WHERE clauses down...
2001-07-16 Tom LaneDo not push down quals into subqueries that have LIMIT...
2001-07-16 Tom LanePartial indexes work again, courtesy of Martijn van...
2001-07-15 Tom LaneRestructure index AM interface for index building and...
2001-06-25 Tom LaneOptimizer can now estimate selectivity of IS NULL,...
2001-06-19 Tom LaneAdd IS UNKNOWN, IS NOT UNKNOWN boolean tests, fix the...
2001-06-17 Tom LaneMake inet/cidr << and <<= operators indexable. From...
2001-06-11 Tom LaneMake planner compute the number of hash buckets the...
2001-06-10 Tom LaneFix thinko in hash cost estimation: average frequency
2001-06-05 Tom LaneImprove planning of OR indexscan plans: for quals like
2001-06-05 Tom LaneFurther work on making use of new statistics in planner...
2001-06-03 Peter EisentrautMark many strings in backend not covered by elog for...
2001-05-20 Tom LaneModify optimizer data structures so that IndexOptInfo...
2001-05-14 Tom LaneCurrent implementation of FOR UPDATE has no hope of...
2001-05-09 Tom LaneFirst cut at making indexscan cost estimates depend...
2001-05-09 Tom LaneCause planner to make use of average-column-width stati...
2001-05-08 Bruce MomjianAdd newlines around debug output in optimizer showing...
2001-05-07 Tom LaneRewrite of planner statistics-gathering code. ANALYZE...
2001-04-30 Tom LaneSuppress pull-up of subqueries that are in the nullable...
2001-04-25 Tom LaneTweak nestloop costing to weight restart cost of inner...
2001-04-18 Tom LaneMake the world safe for passing whole rows of views...
2001-04-16 Tom LaneAvoid reversing user-given order of WHERE clauses while...
2001-04-15 Tom LanePrevent generation of invalid plans for RIGHT or FULL...
2001-04-01 Tom LanePlanner wasn't correctly handling adjustment of tuple_f...
2001-03-27 Tom LaneQuick hack to fix Oliver Elphick's problem with subsele...
2001-03-27 Tom LaneRepair pgindent damage to comments.
2001-03-23 Bruce MomjianFix comments that were mis-wrapped, for Tom Lane.
2001-03-22 Bruce MomjianRemove dashes in comments that don't need them, rewrap...
2001-03-22 Bruce Momjianpgindent run. Make it all clean.
2001-03-08 Tom LaneA subplan invoked within an aggregate function's argume...
2001-02-16 Tom LaneClean up two rather nasty bugs in operator selection...
2001-02-16 Tom LaneTake OUTER JOIN semantics into account when estimating...
2001-02-15 Tom LaneUpdate a couple of obsolete comments.
2001-02-12 Bruce MomjianCleanup
2001-02-12 Bruce MomjianAdd // -> /* */ mapping to pgindent.
2001-02-03 Tom LaneFix inappropriate attempt to push down qual clauses...
2001-01-27 Tom LaneDon't crash if subquery appears multiple times in joint...
next