aboutsummaryrefslogtreecommitdiff
path: root/src/backend/nodes/outfuncs.c
Commit message (Expand)AuthorAge
* Fix planner to restore its previous level of intelligence about pushingTom Lane2009-04-16
* Change EXPLAIN output so that subplans and initplans (particularly CTEs)Tom Lane2009-04-05
* Remove the recently added node types ReloptElem and OptionDefElem in favorTom Lane2009-04-04
* If we expect a hash join to be performed in multiple batches, suppressTom Lane2009-03-26
* Optimize multi-batch hash joins when the outer relation has a nonuniformTom Lane2009-03-21
* Make SubPlan nodes carry the result's typmod as well as datatype OID. This isTom Lane2009-03-10
* Get rid of the rather fuzzily defined FlattenedSubLink node type in favor ofTom Lane2009-02-25
* Fix cost_mergejoin's failure to adjust for rescanning of non-unique merge joinTom Lane2009-02-06
* Allow reloption names to have qualifiers, initially supporting a TOASTAlvaro Herrera2009-02-02
* Support column-level privileges, as required by SQL standard.Tom Lane2009-01-22
* Update copyright for 2009.Bruce Momjian2009-01-01
* Add some basic support for window frame clauses to the window-functionsTom Lane2008-12-31
* Support window functions a la SQL:2008.Tom Lane2008-12-28
* Fix an oversight in the code that makes transitive-equality deductions fromTom Lane2008-12-01
* Make SELECT FOR UPDATE/SHARE work on inheritance trees, by having the planTom Lane2008-11-15
* Get rid of adjust_appendrel_attr_needed(), which has been broken ever sinceTom Lane2008-11-11
* Add a concept of "placeholder" variables to the planner. These are variablesTom Lane2008-10-21
* Extend CTE patch to support recursive UNION (ie, without ALL). TheTom Lane2008-10-07
* When expanding a whole-row Var into a RowExpr during ResolveNew(), attachTom Lane2008-10-06
* Implement SQL-standard WITH clauses, including WITH RECURSIVE.Tom Lane2008-10-04
* Improve the plan cache invalidation mechanism to make it invalidate plansTom Lane2008-09-09
* Add a bunch of new error location reports to parse-analysis error messages.Tom Lane2008-09-01
* Fix the raw-parsetree representation of star (as in SELECT * FROM orTom Lane2008-08-30
* Extend the parser location infrastructure to include a location field inTom Lane2008-08-28
* Arrange to convert EXISTS subqueries that are equivalent to hashable INTom Lane2008-08-22
* Implement SEMI and ANTI joins in the planner and executor. (Semijoins replaceTom Lane2008-08-14
* Improve INTERSECT/EXCEPT hashing by realizing that we don't need to make anyTom Lane2008-08-07
* Support hashing for duplicate-elimination in INTERSECT and EXCEPT queries.Tom Lane2008-08-07
* Teach the system how to use hashing for UNION. (INTERSECT/EXCEPT will follow,Tom Lane2008-08-07
* Improve SELECT DISTINCT to consider hash aggregation, as well as sort/uniq,Tom Lane2008-08-05
* Rearrange the querytree representation of ORDER BY/GROUP BY/DISTINCT itemsTom Lane2008-08-02
* Add dump support for SortBy nodes. Needed this while debugging a reportedTom Lane2008-07-17
* Support "variadic" functions, which can accept a variable number of argumentsTom Lane2008-07-16
* Remove typename from A_Const.Alvaro Herrera2008-04-29
* Since createplan.c no longer cares whether index operators are lossy, it hasTom Lane2008-04-13
* Remove TypeName struct's timezone flag, which has been write-only storageTom Lane2008-03-21
* Arrange for an explicit cast applied to an ARRAY[] constructor to be appliedTom Lane2008-03-20
* Fix an omission in the outfuncs.c support for Agg nodes: the grpColIdxNeil Conway2008-01-09
* Fix a minor bug in outfuncs support for SetOp: dupOperators is an arrayNeil Conway2008-01-07
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-01
* Code review for LIKE ... INCLUDING INDEXES patch. Fix failure to propagateTom Lane2007-12-01
* Re-run pgindent with updated list of typedefs. (Updated README shouldBruce Momjian2007-11-15
* pgindent run for 8.3.Bruce Momjian2007-11-15
* Fix EquivalenceClass code to handle volatile sort expressions in a moreTom Lane2007-11-08
* Fix the plan-invalidation mechanism to treat regclass constants that refer toTom Lane2007-10-11
* Rewrite make_outerjoininfo's construction of min_lefthand and min_righthandTom Lane2007-08-31
* Implement CREATE TABLE LIKE ... INCLUDING INDEXES. Patch from NikhilS,Neil Conway2007-07-17
* Fix outfuncs.c to dump A_Const nodes representing NULLs correctly. This hasTom Lane2007-07-17
* Improve UPDATE/DELETE WHERE CURRENT OF so that they can be used from plpgsqlTom Lane2007-06-11
* Support UPDATE/DELETE WHERE CURRENT OF cursor_name, per SQL standard.Tom Lane2007-06-11