summaryrefslogtreecommitdiff
path: root/src/include/nodes
Commit message (Expand)AuthorAgeFilesLines
* Allow include files to compile own their own.Bruce Momjian2006-07-133-8/+4
* Remove trailing comma from CreateStmtLikeOption enum definition. ThisNeil Conway2006-07-131-2/+2
* Code review for FILLFACTOR patch. Change WITH grammar as per earlierTom Lane2006-07-031-11/+10
* Add FILLFACTOR to CREATE INDEX.Bruce Momjian2006-07-021-14/+9
* ALTER TABLE ... ADD/DROPS INHERIT (actually INHERIT / NO INHERIT)Bruce Momjian2006-07-021-2/+5
* Revise the planner's handling of "pseudoconstant" WHERE clauses, that isTom Lane2006-07-011-24/+28
* Fix hash aggregation to suppress unneeded columns from being stored inTom Lane2006-06-281-1/+3
* Adjust TupleHashTables to use MinimalTuple format for contained tuples.Tom Lane2006-06-281-2/+2
* Add INCLUDING CONSTRAINTS to CREATE TABLE LIKE.Bruce Momjian2006-06-271-2/+11
* DROP ... IF EXISTS for the following cases:Andrew Dunstan2006-06-161-1/+7
* Make the planner estimate costs for nestloop inner indexscans on the basisTom Lane2006-06-061-1/+4
* Improve the representation of FOR UPDATE/FOR SHARE so that we canTom Lane2006-04-303-15/+24
* Add GRANT CONNECTION ON DATABASE, to be used in addition to pg_hba.conf.Bruce Momjian2006-04-301-2/+3
* Use schema search path to find the first matching contraint name for SETBruce Momjian2006-04-271-2/+2
* Simplify ParamListInfo data structure to support only numbered parameters,Tom Lane2006-04-222-75/+35
* Support the syntaxTom Lane2006-04-152-30/+7
* 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-5/+9
* Improve parser so that we can show an error cursor position for errorsTom Lane2006-03-142-7/+18
* Remove the stub support we had for UNION JOIN; per discussion, this isTom Lane2006-03-071-8/+1
* Update copyright for 2006. Update scripts.Bruce Momjian2006-03-0516-32/+32
* Add CASCADE option to TRUNCATE. Joachim WielandTom Lane2006-03-031-1/+2
* Teach nodeSort and nodeMaterial to optimize out unnecessary overheadTom Lane2006-02-281-2/+4
* Add TABLESPACE and ON COMMIT clauses to CREATE TABLE AS. ON COMMIT isNeil Conway2006-02-191-18/+27
* DROP IF EXISTS for ROLE/USER/GROUPAndrew Dunstan2006-02-041-1/+2
* Restructure planner's handling of inheritance. Rather than processingTom Lane2006-01-312-23/+116
* Add GRANT ON SEQUENCE syntax to support sequence-only permissions.Bruce Momjian2006-01-211-2/+3
* Trim an obsolete comment: it is no longer relevant that "SELECT" wasNeil Conway2006-01-011-4/+4
* Implement SQL-compliant treatment of row comparisons for < <= > >= casesTom Lane2005-12-284-47/+101
* Teach planner how to rearrange join order for some classes of OUTER JOIN.Tom Lane2005-12-203-18/+41
* Spell "explicitly" correctly, per Simon.Tom Lane2005-12-071-3/+3
* Adjust scan plan nodes to avoid getting an extra AccessShareLock on aTom Lane2005-12-021-1/+10
* Tweak hash join code to use an additional heuristic for deciding whetherTom Lane2005-11-281-1/+3
* Change the parser to translate "foo [NOT] IN (expression-list)" toTom Lane2005-11-281-2/+3
* Teach tid-scan code to make use of "ctid = ANY (array)" clauses, so thatTom Lane2005-11-263-10/+14
* Change seqscan logic so that we check visibility of all tuples on a pageTom Lane2005-11-261-7/+1
* Teach planner and executor to handle ScalarArrayOpExpr as an indexableTom Lane2005-11-251-11/+38
* Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian2005-11-224-25/+25
* DROP DATABASE IF EXISTS variantAndrew Dunstan2005-11-221-1/+2
* Implement DROP OWNED and REASSIGN OWNED. These new commands facilitate theAlvaro Herrera2005-11-212-2/+24
* DROP objecttype IF EXISTS for the following objects:Andrew Dunstan2005-11-191-1/+2
* Restore the former RestrictInfo field valid_everywhere (but invert the flagTom Lane2005-11-141-1/+8
* Prevent ExecInsert() and ExecUpdate() from scribbling on the result tupleTom Lane2005-11-141-1/+3
* Adjust parser so that POSTQUEL-style implicit RTEs are stored withTom Lane2005-10-261-9/+7
* Standard pgindent run for 8.1.Bruce Momjian2005-10-159-256/+224
* The original patch to avoid building a hash join's hashtable when theTom Lane2005-09-251-2/+3
* Tweak nodeBitmapAnd to stop evaluating sub-plan scans if it finds it'sTom Lane2005-08-281-1/+3
* Change the division of labor between grouping_planner and query_plannerTom Lane2005-08-271-1/+4
* Add ALTER TABLE ENABLE/DISABLE TRIGGER commands. Change pg_dump toTom Lane2005-08-231-4/+10
* Add NOWAIT option to SELECT FOR UPDATE/SHARE.Tom Lane2005-08-013-7/+24