summaryrefslogtreecommitdiff
path: root/src/backend/nodes/outfuncs.c
Commit message (Expand)AuthorAgeFilesLines
* Put back planner's ability to cache the results of mergejoinscansel(),Tom Lane2007-01-221-1/+4
* Refactor planner's pathkeys data structure to create a separate, explicitTom Lane2007-01-201-33/+57
* Change the planner-to-executor API so that the planner tells the executorTom Lane2007-01-101-5/+49
* Support ORDER BY ... NULLS FIRST/LAST, and add ASC/DESC/NULLS FIRST/NULLS LASTTom Lane2007-01-091-1/+10
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-051-2/+2
* Support type modifiers for user-defined types, and pull most knowledgeTom Lane2006-12-301-2/+3
* Code review for XML patch. Instill a bit of sanity in the location ofTom Lane2006-12-241-15/+16
* Restructure operator classes to allow improved handling of cross-data-typeTom Lane2006-12-231-2/+7
* Initial SQL/XML support: xml data type and initial set of functions.Peter Eisentraut2006-12-211-1/+15
* Add a paramtypmod field to Param nodes. This is dead weight for ParamsTom Lane2006-12-101-1/+2
* Improve usage of effective_cache_size parameter by assuming that all theTom Lane2006-09-191-1/+2
* Add the ability to create indexes 'concurrently', that is, withoutTom Lane2006-08-251-1/+2
* Fix all known problems with pg_dump's handling of serial sequencesTom Lane2006-08-211-2/+1
* Add INSERT/UPDATE/DELETE RETURNING, with basic docs and regression tests.Tom Lane2006-08-121-1/+3
* Fix UNION/INTERSECT/EXCEPT so that when two inputs being merged haveTom Lane2006-08-101-1/+2
* Add support for multi-row VALUES clauses as part of INSERT statementsJoe Conway2006-08-021-1/+16
* Aggregate functions now support multiple input arguments. I also tookTom Lane2006-07-271-2/+2
* Remove 576 references of include files that were not needed.Bruce Momjian2006-07-141-2/+1
* Code review for FILLFACTOR patch. Change WITH grammar as per earlierTom Lane2006-07-031-2/+1
* Add FILLFACTOR to CREATE INDEX.Bruce Momjian2006-07-021-3/+7
* Revise the planner's handling of "pseudoconstant" WHERE clauses, that isTom Lane2006-07-011-3/+4
* Improve the representation of FOR UPDATE/FOR SHARE so that we canTom Lane2006-04-301-5/+16
* Simplify ParamListInfo data structure to support only numbered parameters,Tom Lane2006-04-221-3/+2
* Add error location info to ResTarget parse nodes. Allows error cursor to be ...Tom Lane2006-03-231-1/+2
* Clean up representation of function RTEs for functions returning RECORD.Tom Lane2006-03-161-3/+4
* Improve parser so that we can show an error cursor position for errorsTom Lane2006-03-141-1/+5
* Update copyright for 2006. Update scripts.Bruce Momjian2006-03-051-2/+2
* Add TABLESPACE and ON COMMIT clauses to CREATE TABLE AS. ON COMMIT isNeil Conway2006-02-191-1/+6
* Restructure planner's handling of inheritance. Rather than processingTom Lane2006-01-311-3/+21
* Implement SQL-compliant treatment of row comparisons for < <= > >= casesTom Lane2005-12-281-6/+18
* Teach planner how to rearrange join order for some classes of OUTER JOIN.Tom Lane2005-12-201-2/+16
* Change the parser to translate "foo [NOT] IN (expression-list)" toTom Lane2005-11-281-1/+6
* Teach tid-scan code to make use of "ctid = ANY (array)" clauses, so thatTom Lane2005-11-261-3/+3
* Restore the former RestrictInfo field valid_everywhere (but invert the flagTom Lane2005-11-141-1/+2
* Standard pgindent run for 8.1.Bruce Momjian2005-10-151-14/+13
* Change the division of labor between grouping_planner and query_plannerTom Lane2005-08-271-1/+4
* Add NOWAIT option to SELECT FOR UPDATE/SHARE.Tom Lane2005-08-011-3/+16
* Teach planner about some cases where a restriction clause can beTom Lane2005-07-021-2/+5
* Replace pg_shadow and pg_group by new role-capable catalogs pg_authidTom Lane2005-06-281-2/+2
* Add Oracle-compatible GREATEST and LEAST functions. Pavel StehuleTom Lane2005-06-261-1/+14
* Simplify the planner's join clause management by storing join clausesTom Lane2005-06-091-13/+2
* Nab some low-hanging fruit: replace the planner's base_rel_list andTom Lane2005-06-061-3/+2
* Remove planner's private fields from Query struct, and put them intoTom Lane2005-06-051-3/+85
* Fix duplicate call to WRITE_NODE_FIELD(whereClause) in _outSelectStmtTatsuo Ishii2005-05-091-2/+1
* Implement sharable row-level locks, and use them for foreign key referencesTom Lane2005-04-281-2/+4
* Remove support for OR'd indexscans internal to a single IndexScan planTom Lane2005-04-251-13/+12
* Rethink original decision to use AND/OR Expr nodes to represent bitmapTom Lane2005-04-211-1/+29
* Install some slightly realistic cost estimation for bitmap index scans.Tom Lane2005-04-211-1/+3
* Create executor and planner-backend support for decoupled heap and indexTom Lane2005-04-191-4/+72
* Merge Resdom nodes into TargetEntry nodes to simplify code and save aTom Lane2005-04-061-20/+7