summaryrefslogtreecommitdiff
path: root/src/backend/parser/analyze.c
Commit message (Expand)AuthorAgeFilesLines
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-011-2/+2
* pgindent run for 8.3.Bruce Momjian2007-11-151-7/+7
* Tweak new error messages to match the actual syntax of DECLARE CURSOR.Tom Lane2007-10-251-3/+3
* Disallow scrolling of FOR UPDATE/FOR SHARE cursors, so as to avoid problemsTom Lane2007-10-241-1/+15
* Separate parse-analysis for utility commands out of parser/analyze.cTom Lane2007-06-231-1886/+42
* transformColumnDefinition failed to complain aboutTom Lane2007-06-201-2/+6
* Remove duplicate #include.Neil Conway2007-06-191-2/+1
* Support UPDATE/DELETE WHERE CURRENT OF cursor_name, per SQL standard.Tom Lane2007-06-111-5/+5
* Modify processing of DECLARE CURSOR and EXPLAIN so that they can resolve theTom Lane2007-04-271-29/+149
* First phase of plan-invalidation project: create a plan cache managementTom Lane2007-03-131-360/+132
* Remove the Query structure from the executor's API. This allows us to stopTom Lane2007-02-201-18/+7
* Wording cleanup for error messages. Also change can't -> cannot.Bruce Momjian2007-02-011-12/+12
* Update error messsage wording.Bruce Momjian2007-01-121-2/+2
* Update ORDER BY UNION function/exprssion wording (again).Bruce Momjian2007-01-121-2/+4
* Update UNION/INTERSECT/EXCEPT ORDER BY error wording forBruce Momjian2007-01-111-2/+2
* Improve error wording of ORDER BY in UNION that uses new expressions inBruce Momjian2007-01-111-2/+2
* Support ORDER BY ... NULLS FIRST/LAST, and add ASC/DESC/NULLS FIRST/NULLS LASTTom Lane2007-01-091-1/+3
* Update CVS HEAD for 2007 copyright. Back branches are typically notBruce Momjian2007-01-051-2/+2
* Code review for LIKE INCLUDING CONSTRAINTS patch --- improve comments,Tom Lane2006-10-111-11/+16
* pgindent run for 8.2.Bruce Momjian2006-10-041-119/+121
* Fix problems with column name list of CREATE TABLE AS being applied toTom Lane2006-09-181-43/+66
* Fix CREATE TABLE ... AS VALUES ... to work rather than Assert'ing;Tom Lane2006-09-181-11/+18
* Extend COPY to support COPY (SELECT ...) TO ...Tom Lane2006-08-301-1/+14
* 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-6/+32
* Tweak SPI_cursor_open to allow INSERT/UPDATE/DELETE RETURNING; this wasTom Lane2006-08-121-1/+10
* Add INSERT/UPDATE/DELETE RETURNING, with basic docs and regression tests.Tom Lane2006-08-121-7/+82
* Fix UNION/INTERSECT/EXCEPT so that when two inputs being merged haveTom Lane2006-08-101-23/+51
* Wups, got the test for contain_vars_of_level-not-needed wrong inTom Lane2006-08-021-2/+2
* Add a HINT per suggestion from Michael Glaesemann. Also, tweak OLD/NEWTom Lane2006-08-021-5/+9
* Add support for multi-row VALUES clauses as part of INSERT statementsJoe Conway2006-08-021-60/+414
* Remove 576 references of include files that were not needed.Bruce Momjian2006-07-141-6/+1
* Sort reference of include files, "A" - "F".Bruce Momjian2006-07-111-3/+3
* Code review for FILLFACTOR patch. Change WITH grammar as per earlierTom Lane2006-07-031-4/+1
* Add FILLFACTOR to CREATE INDEX.Bruce Momjian2006-07-021-4/+6
* Add INCLUDING CONSTRAINTS to CREATE TABLE LIKE.Bruce Momjian2006-06-271-3/+61
* Disallow aggregate functions in UPDATE commands (unless within a sub-SELECT).Tom Lane2006-06-211-4/+11
* Improve the representation of FOR UPDATE/FOR SHARE so that we canTom Lane2006-04-301-51/+62
* Simplify ParamListInfo data structure to support only numbered parameters,Tom Lane2006-04-221-2/+2
* Add error location info to ResTarget parse nodes. Allows error cursor to be ...Tom Lane2006-03-231-5/+16
* Improve parser so that we can show an error cursor position for errorsTom Lane2006-03-141-10/+16
* 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/+5
* Allow the types of parameters to PREPARE to be inferred. If a parameter'sNeil Conway2006-01-151-10/+29
* Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian2005-11-221-19/+19
* Standard pgindent run for 8.1.Bruce Momjian2005-10-151-275/+259
* Change nextval and other sequence functions to specify their sequenceTom Lane2005-10-021-2/+5
* Add NOWAIT option to SELECT FOR UPDATE/SHARE.Tom Lane2005-08-011-29/+41
* Make use of new list primitives list_append_unique and list_concat_uniqueTom Lane2005-07-281-5/+5
* Replace the parser's namespace tree (which formerly had the sameTom Lane2005-06-051-39/+43