aboutsummaryrefslogtreecommitdiff
path: root/src/backend/parser/analyze.c
Commit message (Expand)AuthorAge
* Avoid a premature coercion failure in transformSetOperationTree() whenTom Lane2009-12-16
* Make FOR UPDATE/SHARE in the primary query not propagate into WITH queries;Tom Lane2009-10-27
* Fix bug with WITH RECURSIVE immediately inside WITH RECURSIVE. 99% of theTom Lane2009-09-09
* Modify the definition of window-function PARTITION BY and ORDER BY clausesTom Lane2009-08-27
* 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian2009-06-11
* Support column-level privileges, as required by SQL standard.Tom Lane2009-01-22
* Defend against null input in analyze_requires_snapshot(), per reportTom Lane2009-01-08
* Update copyright for 2009.Bruce Momjian2009-01-01
* Support window functions a la SQL:2008.Tom Lane2008-12-28
* Fix failure to ensure that a snapshot is available to datatype input functionsTom Lane2008-12-13
* Make SELECT FOR UPDATE/SHARE work on inheritance trees, by having the planTom Lane2008-11-15
* Improve parser error location for cases where an INSERT or UPDATE commandTom Lane2008-10-07
* Fix GetCTEForRTE() to deal with the possibility that the RTE it's given cameTom Lane2008-10-06
* Implement SQL-standard WITH clauses, including WITH RECURSIVE.Tom Lane2008-10-04
* Add a bunch of new error location reports to parse-analysis error messages.Tom Lane2008-09-01
* Extend the parser location infrastructure to include a location field inTom Lane2008-08-28
* Move exprType(), exprTypmod(), expression_tree_walker(), and related routinesTom Lane2008-08-25
* Teach the system how to use hashing for UNION. (INTERSECT/EXCEPT will follow,Tom Lane2008-08-07
* Rearrange the querytree representation of ORDER BY/GROUP BY/DISTINCT itemsTom Lane2008-08-02
* Fix parser so that we don't modify the user-written ORDER BY list in orderTom Lane2008-07-31
* Adjust things so that the query_string of a cached plan and the sourceText ofTom Lane2008-07-18
* Improve our #include situation by moving pointer types away from theAlvaro Herrera2008-06-19
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-01
* pgindent run for 8.3.Bruce Momjian2007-11-15
* Tweak new error messages to match the actual syntax of DECLARE CURSOR.Tom Lane2007-10-25
* Disallow scrolling of FOR UPDATE/FOR SHARE cursors, so as to avoid problemsTom Lane2007-10-24
* Separate parse-analysis for utility commands out of parser/analyze.cTom Lane2007-06-23
* transformColumnDefinition failed to complain aboutTom Lane2007-06-20
* Remove duplicate #include.Neil Conway2007-06-19
* Support UPDATE/DELETE WHERE CURRENT OF cursor_name, per SQL standard.Tom Lane2007-06-11
* Modify processing of DECLARE CURSOR and EXPLAIN so that they can resolve theTom Lane2007-04-27
* First phase of plan-invalidation project: create a plan cache managementTom Lane2007-03-13
* Remove the Query structure from the executor's API. This allows us to stopTom Lane2007-02-20
* Wording cleanup for error messages. Also change can't -> cannot.Bruce Momjian2007-02-01
* Update error messsage wording.Bruce Momjian2007-01-12
* Update ORDER BY UNION function/exprssion wording (again).Bruce Momjian2007-01-12
* Update UNION/INTERSECT/EXCEPT ORDER BY error wording forBruce Momjian2007-01-11
* Improve error wording of ORDER BY in UNION that uses new expressions inBruce Momjian2007-01-11
* Support ORDER BY ... NULLS FIRST/LAST, and add ASC/DESC/NULLS FIRST/NULLS LASTTom Lane2007-01-09
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-05
* Code review for LIKE INCLUDING CONSTRAINTS patch --- improve comments,Tom Lane2006-10-11
* pgindent run for 8.2.Bruce Momjian2006-10-04
* Fix problems with column name list of CREATE TABLE AS being applied toTom Lane2006-09-18
* Fix CREATE TABLE ... AS VALUES ... to work rather than Assert'ing;Tom Lane2006-09-18
* Extend COPY to support COPY (SELECT ...) TO ...Tom Lane2006-08-30
* Add the ability to create indexes 'concurrently', that is, withoutTom Lane2006-08-25
* Fix all known problems with pg_dump's handling of serial sequencesTom Lane2006-08-21
* Tweak SPI_cursor_open to allow INSERT/UPDATE/DELETE RETURNING; this wasTom Lane2006-08-12
* Add INSERT/UPDATE/DELETE RETURNING, with basic docs and regression tests.Tom Lane2006-08-12
* Fix UNION/INTERSECT/EXCEPT so that when two inputs being merged haveTom Lane2006-08-10