summaryrefslogtreecommitdiff
path: root/src/backend/parser
Commit message (Expand)AuthorAgeFilesLines
* Disallow aggregate functions in UPDATE commands (unless within a sub-SELECT).Tom Lane2006-06-211-4/+11
* Fix a couple of obvious problems in DROP IF EXISTS patch.Tom Lane2006-06-161-6/+5
* DROP ... IF EXISTS for the following cases:Andrew Dunstan2006-06-161-6/+93
* Fix problems with cached tuple descriptors disappearing while still in useTom Lane2006-06-162-4/+8
* Re-introduce the yylex filter function formerly used to support UNIONTom Lane2006-05-273-8/+127
* Add a new GUC parameter backslash_quote, which determines whether the SQLTom Lane2006-05-211-1/+13
* Code review for standard_conforming_strings patch. Fix it so it does notTom Lane2006-05-111-11/+6
* Provide a namespace.c function for lookup of an operator with exactTom Lane2006-05-011-98/+90
* Improve the representation of FOR UPDATE/FOR SHARE so that we canTom Lane2006-04-304-80/+121
* Use schema search path to find the first matching contraint name for SETBruce Momjian2006-04-271-2/+2
* Back out RESET CONNECTION until there is more discussion.Bruce Momjian2006-04-251-7/+1
* Add RESET CONNECTION, to reset all aspects of a session.Bruce Momjian2006-04-251-1/+7
* Back out patch, unintended.Bruce Momjian2006-04-241-8/+1
* Done:Bruce Momjian2006-04-241-1/+8
* Simplify ParamListInfo data structure to support only numbered parameters,Tom Lane2006-04-223-8/+8
* Support the syntaxTom Lane2006-04-152-95/+173
* Fix a bunch of problems with domains by making them use special input functionsTom Lane2006-04-051-23/+37
* Modify all callers of datatype input and receive functions so that if theseTom Lane2006-04-042-26/+20
* Add error location info to ResTarget parse nodes. Allows error cursor to be ...Tom Lane2006-03-234-32/+81
* Clean up representation of function RTEs for functions returning RECORD.Tom Lane2006-03-162-40/+47
* It seems the YYLLOC_DEFAULT macro recommended by the Bison 1.875 manualTom Lane2006-03-141-2/+7
* Improve parser so that we can show an error cursor position for errorsTom Lane2006-03-1411-305/+527
* Remove the stub support we had for UNION JOIN; per discussion, this isTom Lane2006-03-074-84/+10
* Enable standard_conforming_strings to be turned on.Bruce Momjian2006-03-061-39/+61
* Per recent discussion on -hackers, we should sometimes reorder theNeil Conway2006-03-051-41/+85
* Update copyright for 2006. Update scripts.Bruce Momjian2006-03-0516-32/+32
* Add CASCADE option to TRUNCATE. Joachim WielandTom Lane2006-03-031-2/+3
* Allow the syntax CREATE TYPE foo, with no parameters, to permit explicitTom Lane2006-02-281-1/+10
* Add TABLESPACE and ON COMMIT clauses to CREATE TABLE AS. ON COMMIT isNeil Conway2006-02-192-21/+21
* Mark unescape_single_char() "static": as far as I can see this functionNeil Conway2006-02-181-3/+3
* Revert patch becaues of locking concerns:Bruce Momjian2006-02-121-10/+1
* I've created a new shared catalog table pg_shdescription to storeBruce Momjian2006-02-121-2/+5
* Allow ALTER TABLE ... ALTER CONSTRAINT ... RENAMEBruce Momjian2006-02-111-1/+10
* DROP IF EXISTS for ROLE/USER/GROUPAndrew Dunstan2006-02-041-1/+25
* Allow %TYPE to be used with SETOF, per gripe from Murat Tasan.Tom Lane2006-01-311-2/+10
* Fix alias-for-target-table-of-UPDATE-or-DELETE patch so that alias canTom Lane2006-01-221-8/+25
* Allow an optional alias for the target table to be specified for UPDATENeil Conway2006-01-222-5/+21
* Add GRANT ON SEQUENCE syntax to support sequence-only permissions.Bruce Momjian2006-01-211-1/+8
* Allow the types of parameters to PREPARE to be inferred. If a parameter'sNeil Conway2006-01-151-10/+29
* We neglected to apply domain constraints on UNKNOWN parameters toNeil Conway2006-01-121-2/+5
* Improve error messages for missing-FROM-entry cases, as per recent discussion.Tom Lane2006-01-101-17/+97
* Revert some careless search-and-replace: "ADD" in comment text shouldNeil Conway2005-12-291-4/+4
* Implement SQL-compliant treatment of row comparisons for < <= > >= casesTom Lane2005-12-283-180/+300
* Protect ADD and HEADER symbols from conflicting with MIPS includes.Bruce Momjian2005-12-272-16/+16
* I have added these macros to c.h:Bruce Momjian2005-12-251-2/+2
* Allow CREATE/ALTER ROLE PASSWORD NULL to allow restoring the default statePeter Eisentraut2005-12-231-1/+5
* Implement IS NOT DISTINCT FROM, update the regression tests and docs.Neil Conway2005-12-111-1/+13
* Change the parser to translate "foo [NOT] IN (expression-list)" toTom Lane2005-11-282-86/+189
* Re-run pgindent, fixing a problem where comment lines after a blankBruce Momjian2005-11-229-90/+90
* DROP DATABASE IF EXISTS variantAndrew Dunstan2005-11-221-2/+10