summaryrefslogtreecommitdiff
path: root/src/backend/parser/parse_utilcmd.c
Commit message (Expand)AuthorAgeFilesLines
* Allow WITH clauses to be attached to INSERT, UPDATE, DELETE statements.Tom Lane2010-10-151-0/+29
* Add ALTER TYPE ... ADD/DROP/ALTER/RENAME ATTRIBUTEPeter Eisentraut2010-09-261-0/+3
* Remove cvs keywords from all files.Magnus Hagander2010-09-201-1/+1
* Fix failure of "ALTER TABLE t ADD COLUMN c serial" when done by non-owner.Tom Lane2010-08-181-1/+13
* Standardize get_whatever_oid functions for other object types.Robert Haas2010-08-051-3/+3
* Reduce lock levels of CREATE TRIGGER and some ALTER TABLE, CREATE RULE actions.Simon Riggs2010-07-281-7/+16
* pgindent run for 9.0Bruce Momjian2010-02-261-18/+19
* Wrap calls to SearchSysCache and related functions using macros.Robert Haas2010-02-141-13/+7
* Fix unwarranted assumption that a cached rowtype would stick aroundTom Lane2010-02-031-3/+3
* Type table featurePeter Eisentraut2010-01-281-4/+54
* Update copyright for the year 2010.Bruce Momjian2010-01-021-2/+2
* Adjust naming of indexes and their columns per recent discussion.Tom Lane2009-12-231-23/+24
* Disallow comments on columns of relation types other than tables, views,Tom Lane2009-12-221-43/+6
* There is no good reason for the CREATE TABLE LIKE INCLUDING COMMENTS code toTom Lane2009-12-201-26/+30
* Support ORDER BY within aggregate function calls, at long last providing aTom Lane2009-12-151-1/+2
* Add exclusion constraints, which generalize the concept of uniqueness toTom Lane2009-12-071-22/+116
* Clean up a couple of bizarre code formatting choices in recent CREATE LIKE pa...Tom Lane2009-11-131-6/+10
* Don't treat NEW and OLD as reserved words anymore. For the purposes of rulesTom Lane2009-11-051-5/+5
* Code review for LIKE INCLUDING patch --- clean up some cosmetic and notTom Lane2009-10-131-1/+3
* CREATE LIKE INCLUDING COMMENTS and STORAGE, and INCLUDING ALL shortcut. Itaga...Andrew Dunstan2009-10-121-38/+135
* Change CREATE TABLE so that column default expressions coming from differentTom Lane2009-10-061-4/+4
* Merge the Constraint and FkConstraint node types into a single type.Tom Lane2009-07-301-165/+132
* Support deferrable uniqueness constraints.Tom Lane2009-07-291-34/+103
* Make backend header files C++ safePeter Eisentraut2009-07-161-12/+12
* Move some declarations in the raw-parser header files to create a clearerTom Lane2009-07-121-2/+2
* 8.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian2009-06-111-12/+13
* Update copyright for 2009.Bruce Momjian2009-01-011-2/+2
* Support window functions a la SQL:2008.Tom Lane2008-12-281-1/+6
* Allow CREATE OR REPLACE VIEW to add columns to the _end_ of the view.Bruce Momjian2008-12-061-1/+2
* Add a bunch of new error location reports to parse-analysis error messages.Tom Lane2008-09-011-4/+4
* Extend the parser location infrastructure to include a location field inTom Lane2008-08-281-1/+3
* Move exprType(), exprTypmod(), expression_tree_walker(), and related routinesTom Lane2008-08-251-2/+2
* Support "variadic" functions, which can accept a variable number of argumentsTom Lane2008-07-161-1/+2
* Remove typename from A_Const.Alvaro Herrera2008-04-291-3/+6
* Remove transformAlterTableStmt's kluge to replace ColumnDef.is_not_nullTom Lane2008-04-241-24/+5
* Simplify and standardize conversions between TEXT datums and ordinary CTom Lane2008-03-251-3/+3
* Give an explicit error for serial[], rather than silently ignoringTom Lane2008-03-211-2/+13
* Fix CREATE TABLE ... LIKE ... INCLUDING INDEXES to not cause unwantedTom Lane2008-02-071-2/+5
* Update copyrights in source tree to 2008.Bruce Momjian2008-01-011-2/+2
* Code review for LIKE ... INCLUDING INDEXES patch. Fix failure to propagateTom Lane2007-12-011-125/+132
* pgindent run for 8.3.Bruce Momjian2007-11-151-86/+85
* Ensure that typmod decoration on a datatype name is validated in all cases,Tom Lane2007-11-111-2/+2
* Remove the hack in the grammar that "optimized away" DEFAULT NULL clauses.Tom Lane2007-10-291-2/+1
* Fix a couple of misbehaviors rooted in the fact that the default creationTom Lane2007-08-271-1/+15
* Implement CREATE TABLE LIKE ... INCLUDING INDEXES. Patch from NikhilS,Neil Conway2007-07-171-167/+457
* Separate parse-analysis for utility commands out of parser/analyze.cTom Lane2007-06-231-0/+1800