summaryrefslogtreecommitdiff
path: root/src/backend/optimizer/path/pathkeys.c
Commit message (Expand)AuthorAgeFilesLines
* Change the division of labor between grouping_planner and query_plannerTom Lane2005-08-271-67/+1
* Make use of new list primitives list_append_unique and list_concat_uniqueTom Lane2005-07-281-8/+5
* Improve outer-join-deduction logic to be able to propagate equalitiesTom Lane2005-07-031-157/+202
* Teach planner about some cases where a restriction clause can beTom Lane2005-07-021-3/+288
* Simplify the planner's join clause management by storing join clausesTom Lane2005-06-091-25/+16
* Remove planner's private fields from Query struct, and put them intoTom Lane2005-06-051-26/+30
* Merge Resdom nodes into TargetEntry nodes to simplify code and save aTom Lane2005-04-061-5/+5
* Add a back-link from IndexOptInfo structs to their parent RelOptInfoTom Lane2005-03-271-3/+3
* The result of a FULL or RIGHT join can't be assumed to be sorted by theTom Lane2005-01-231-1/+10
* Tag appropriate files for rc3PostgreSQL Daemon2004-12-311-2/+2
* Pgindent run for 8.0.Bruce Momjian2004-08-291-5/+6
* Update copyright to 2004.Bruce Momjian2004-08-291-2/+2
* Make the world very nearly safe for composite-type columns in tables.Tom Lane2004-06-051-2/+3
* Desultory de-FastList-ification. RelOptInfo.reltargetlist is back toTom Lane2004-06-011-4/+3
* Use the new List API function names throughout the backend, and disable theNeil Conway2004-05-301-31/+30
* Reimplement the linked list data structure used throughout the backend.Neil Conway2004-05-261-68/+64
* build_subquery_pathkeys() was examining wrong copy of subquery target list,Tom Lane2004-04-071-2/+3
* Planner failed to be smart about binary-compatible expressions in pathkeysTom Lane2003-12-031-10/+33
* $Header: -> $PostgreSQL Changes ...PostgreSQL Daemon2003-11-291-1/+1
* Update copyrights to 2003.Bruce Momjian2003-08-041-2/+2
* pgindent run.Bruce Momjian2003-08-041-28/+29
* Error message editing in backend/optimizer, backend/rewrite.Tom Lane2003-07-251-2/+2
* Restructure building of join relation targetlists so that a join planTom Lane2003-06-291-9/+7
* Replace functional-index facility with expressional indexes. Any columnTom Lane2003-05-281-52/+29
* Repair sloppiness about where cached mergeclause pathkeys are allocated.Tom Lane2003-05-021-1/+11
* Teach planner how to propagate pathkeys from sub-SELECTs in FROM up toTom Lane2003-02-151-3/+138
* Replace planner's representation of relation sets, per pghackers discussion.Tom Lane2003-02-081-10/+14
* Modify planner's implied-equality-deduction code so that when a setTom Lane2003-01-241-10/+111
* Allow merge and hash joins to occur on arbitrary expressions (anything notTom Lane2003-01-151-27/+15
* To suppress memory leakage in long-lived Lists, lremove() should pfreeTom Lane2002-12-171-5/+8
* Phase 2 of read-only-plans project: restructure expression-tree nodesTom Lane2002-12-121-16/+15
* Extend pg_cast castimplicit column to a three-way value; this allows usTom Lane2002-09-181-1/+2
* pgindent run.Bruce Momjian2002-09-041-18/+18
* Update copyright to 2002.Bruce Momjian2002-06-201-2/+2
* Get rid of long-since-vestigial Iter node type, in favor of adding aTom Lane2002-05-121-2/+3
* Restructure representation of join alias variables. An explicit JOINTom Lane2002-03-121-3/+5
* In find_mergeclauses_for_pathkeys, it's okay to return multiple mergeTom Lane2001-11-111-14/+32
* Another pgindent run. Fixes enum indenting, and improves #endifBruce Momjian2001-10-281-3/+3
* pgindent run on all C files. Java run to follow. initdb/regressionBruce Momjian2001-10-251-9/+7
* Extend code that deduces implied equality clauses to detect whether aTom Lane2001-10-181-2/+2
* Remove dashes in comments that don't need them, rewrap with pgindent.Bruce Momjian2001-03-221-8/+8
* pgindent run. Make it all clean.Bruce Momjian2001-03-221-34/+46
* Change Copyright from PostgreSQL, Inc to PostgreSQL Global Development Group.Bruce Momjian2001-01-241-2/+2
* Change lcons(x, NIL) to makeList(x) where appropriate.Bruce Momjian2001-01-171-5/+5
* Planner speedup hacking. Avoid saving useless pathkeys, so that pathTom Lane2000-12-141-89/+322
* Restructure handling of inheritance queries so that they work with outerTom Lane2000-11-121-3/+3
* Subselects in FROM clause, per ISO syntax: FROM (SELECT ...) [AS] alias.Tom Lane2000-09-291-2/+2
* First cut at full support for OUTER JOINs. There are still a few looseTom Lane2000-09-121-17/+24
* Remove 'func_tlist' from Func expression nodes, likewise 'param_tlist'Tom Lane2000-08-081-6/+1
* Deduce equality constraints that are implied by transitivity ofTom Lane2000-07-241-148/+84