summaryrefslogtreecommitdiff
path: root/src/backend/parser
Commit message (Expand)AuthorAgeFilesLines
* Fix some missing inclusions identified with new pgcheckdefines tool.Tom Lane2006-07-152-3/+4
* Remove 576 references of include files that were not needed.Bruce Momjian2006-07-1411-30/+11
* Allow include files to compile own their own.Bruce Momjian2006-07-136-6/+12
* 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-033-295/+29
* Add FILLFACTOR to CREATE INDEX.Bruce Momjian2006-07-023-41/+328
* ALTER TABLE ... ADD/DROPS INHERIT (actually INHERIT / NO INHERIT)Bruce Momjian2006-07-021-1/+17
* Add INCLUDING CONSTRAINTS to CREATE TABLE LIKE.Bruce Momjian2006-06-273-16/+83
* Change the row constructor syntax (ROW(...)) so that list elements foo.*Tom Lane2006-06-262-23/+89
* 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