summaryrefslogtreecommitdiff
path: root/src/backend/parser/parse_clause.c
Commit message (Expand)AuthorAgeFilesLines
* Remove tabs after spaces in C commentsBruce Momjian2014-05-061-14/+14
* Improve the error message given for modifying a window with frame clause.Tom Lane2013-11-051-5/+26
* Make FOR UPDATE/SHARE in the primary query not propagate into WITH queries;Tom Lane2009-10-271-2/+3
* Fix bug with WITH RECURSIVE immediately inside WITH RECURSIVE. 99% of theTom Lane2009-09-091-2/+2
* Modify the definition of window-function PARTITION BY and ORDER BY clausesTom Lane2009-08-271-40/+81
* 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian2009-06-111-64/+64
* Remove the recently added node types ReloptElem and OptionDefElem in favorTom Lane2009-04-041-5/+6
* Allow reloption names to have qualifiers, initially supporting a TOASTAlvaro Herrera2009-02-021-5/+5
* Support column-level privileges, as required by SQL standard.Tom Lane2009-01-221-6/+25
* Update copyright for 2009.Bruce Momjian2009-01-011-2/+2
* Throw error if a <window definition> references a window that already has aTom Lane2008-12-311-2/+11
* Add some basic support for window frame clauses to the window-functionsTom Lane2008-12-311-2/+3
* Support window functions a la SQL:2008.Tom Lane2008-12-281-17/+186
* Fix the implicit-RTE code to be able to handle implicit RTEs for CTEs, asTom Lane2008-10-061-25/+6
* Implement SQL-standard WITH clauses, including WITH RECURSIVE.Tom Lane2008-10-041-4/+54
* Add a bunch of new error location reports to parse-analysis error messages.Tom Lane2008-09-011-54/+134
* Fix the raw-parsetree representation of star (as in SELECT * FROM orTom Lane2008-08-301-2/+3
* Extend the parser location infrastructure to include a location field inTom Lane2008-08-281-10/+18
* Move exprType(), exprTypmod(), expression_tree_walker(), and related routinesTom Lane2008-08-251-2/+2
* Teach the system how to use hashing for UNION. (INTERSECT/EXCEPT will follow,Tom Lane2008-08-071-11/+10
* Improve SELECT DISTINCT to consider hash aggregation, as well as sort/uniq,Tom Lane2008-08-051-8/+3
* Make GROUP BY work properly for datatypes that only support hashing and notTom Lane2008-08-031-6/+2
* Rearrange the querytree representation of ORDER BY/GROUP BY/DISTINCT itemsTom Lane2008-08-021-235/+262
* Fix parser so that we don't modify the user-written ORDER BY list in orderTom Lane2008-07-311-97/+102
* Improve our #include situation by moving pointer types away from theAlvaro Herrera2008-06-191-1/+2
* Remove ancient restriction that LIMIT/OFFSET can't contain a sub-select.Tom Lane2008-02-151-12/+2
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-011-2/+2
* pgindent run for 8.3.Bruce Momjian2007-11-151-8/+9
* Separate parse-analysis for utility commands out of parser/analyze.cTom Lane2007-06-231-15/+7
* Modify processing of DECLARE CURSOR and EXPLAIN so that they can resolve theTom Lane2007-04-271-3/+4
* Wording cleanup for error messages. Also change can't -> cannot.Bruce Momjian2007-02-011-4/+4
* Change the planner-to-executor API so that the planner tells the executorTom Lane2007-01-101-2/+3
* Support ORDER BY ... NULLS FIRST/LAST, and add ASC/DESC/NULLS FIRST/NULLS LASTTom Lane2007-01-091-41/+107
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-051-2/+2
* Code review for XML patch. Instill a bit of sanity in the location ofTom Lane2006-12-241-2/+2
* Fix some translator comments so that xgettext finds them and pgindent doesPeter Eisentraut2006-11-281-5/+3
* pgindent run for 8.2.Bruce Momjian2006-10-041-22/+21
* Cause '*' and 'foo.*' notations to mark the referenced RTE(s) asTom Lane2006-08-141-3/+4
* Tweak SPI_cursor_open to allow INSERT/UPDATE/DELETE RETURNING; this wasTom Lane2006-08-121-2/+2
* Code review for bigint-LIMIT patch. Fix missed planner dependency,Tom Lane2006-07-261-3/+6
* Change LIMIT/OFFSET to use int8Bruce Momjian2006-07-261-2/+2
* Remove 576 references of include files that were not needed.Bruce Momjian2006-07-141-3/+1
* Allow include files to compile own their own.Bruce Momjian2006-07-131-1/+2
* Code review for FILLFACTOR patch. Change WITH grammar as per earlierTom Lane2006-07-031-265/+9
* Add FILLFACTOR to CREATE INDEX.Bruce Momjian2006-07-021-12/+267
* Clean up representation of function RTEs for functions returning RECORD.Tom Lane2006-03-161-10/+14
* Improve parser so that we can show an error cursor position for errorsTom Lane2006-03-141-5/+9
* Per recent discussion on -hackers, we should sometimes reorder theNeil Conway2006-03-051-41/+85
* Update copyright for 2006. Update scripts.Bruce Momjian2006-03-051-2/+2
* Allow an optional alias for the target table to be specified for UPDATENeil Conway2006-01-221-2/+2