summaryrefslogtreecommitdiff
path: root/src/backend/nodes/outfuncs.c
Commit message (Expand)AuthorAgeFilesLines
* 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
* Tag appropriate files for rc3PostgreSQL Daemon2004-12-311-2/+2
* Instead of supposing (wrongly, in the general case) that the rowtypeTom Lane2004-12-111-1/+14
* Pgindent run for 8.0.Bruce Momjian2004-08-291-8/+9
* Update copyright to 2004.Bruce Momjian2004-08-291-2/+2
* Support USING INDEX TABLESPACE clause for PRIMARY KEY and UNIQUETom Lane2004-08-021-6/+8
* Tablespaces. Alternate database locations are dead, long live tablespaces.Tom Lane2004-06-181-3/+5
* Support assignment to subfields of composite columns in UPDATE and INSERT.Tom Lane2004-06-091-11/+74
* Use the new List API function names throughout the backend, and disable theNeil Conway2004-05-301-3/+1
* Reimplement the linked list data structure used throughout the backend.Neil Conway2004-05-261-90/+44
* Promote row expressions to full-fledged citizens of the expression syntax,Tom Lane2004-05-101-1/+14
* Alter string format used for integer and OID lists in stored rules.Tom Lane2004-05-081-3/+7
* Rewrite nodeRead() in a less obfuscated fashion, per discussion withTom Lane2004-05-061-2/+1
* Reimplement CASE val WHEN compval1 THEN ... WHEN compval2 THEN ... ENDTom Lane2004-03-171-1/+13
* Micro-opt: replace calls likeNeil Conway2004-01-311-3/+3
* Correct error introduced in recent hasoids changes --- it's not a boolTom Lane2004-01-221-2/+2
* Fix permission-checking bug reported by Tim Burgess 10-Feb-03 (this timeTom Lane2004-01-141-4/+3
* Instead of rechecking lossy index operators by putting them into theTom Lane2004-01-061-1/+11
* Adjust indexscan planning logic to keep RestrictInfo nodes associatedTom Lane2004-01-051-3/+4
* Improve UniquePath logic to detect the case where the input is alreadyTom Lane2004-01-051-2/+2
* Add the ability to extract OR indexscan conditions from OR-of-ANDTom Lane2004-01-051-4/+5
* Merge restrictlist_selectivity into clauselist_selectivity byTom Lane2004-01-041-1/+2