summaryrefslogtreecommitdiff
path: root/src/backend/parser
Commit message (Expand)AuthorAgeFilesLines
* Make error message more verbose, in hopes of avoiding misunderstandingsTom Lane2004-10-251-4/+6
* Allow functions returning void or cstring to appear in FROM clause,Tom Lane2004-10-201-39/+33
* Code review for NOWAIT patch: downgrade NOWAIT from fully reserved keywordTom Lane2004-10-011-2/+2
* Come to think of it, functions in FROM have the same syntactic restrictionTom Lane2004-09-303-50/+24
* Split out everything that looks like a function call from c_expr intoTom Lane2004-09-291-49/+55
* A few minor list-related cleanups:Neil Conway2004-09-271-8/+4
* Added a call to gettext() to fix broken translated error messages.Dennis Bjorklund2004-09-091-3/+3
* Pgindent run for 8.0.Bruce Momjian2004-08-2912-360/+382
* Update copyright to 2004.Bruce Momjian2004-08-2916-32/+32
* Allow second and subsequent names in a qualified (dotted) name to beTom Lane2004-08-241-3/+3
* Code review for ALTER INDEX patch.Tom Lane2004-08-222-8/+11
* Add ALTER INDEX, particularly for moving tablespaces.Bruce Momjian2004-08-201-13/+45
* Repair some issues with column aliases and RowExpr construction in theTom Lane2004-08-194-241/+315
* Standardize on the assumption that the arguments of a RowExpr correspondTom Lane2004-08-172-18/+46
* Allow commas in BEGIN, START TRANSACTION, and SET TRANSACTION, as requiredTom Lane2004-08-121-30/+24
* Allow optional SAVEPOINT keyword in RELEASE and ROLLBACK TO, for greaterTom Lane2004-08-121-3/+19
* Support USING INDEX TABLESPACE clause for PRIMARY KEY and UNIQUETom Lane2004-08-022-8/+21
* Replace nested-BEGIN syntax for subtransactions with spec-compliantTom Lane2004-07-272-6/+34
* Remove TABLESPACE option of CREATE SEQUENCE; sequences will now alwaysTom Lane2004-07-123-15/+8
* ALTER TABLE SET TABLESPACE. Gavin Sherry, some rework by Tom Lane.Tom Lane2004-07-111-1/+9
* Remove some no-longer-needed #includes.Tom Lane2004-06-282-13/+6
* Fix some bogus code in ConstBit production --- it managed to work, butTom Lane2004-06-281-3/+3
* Support renaming of tablespaces, and changing the owners ofTom Lane2004-06-251-23/+105
* Fix oversight in recent rowtype-handling improvements: transformTargetListTom Lane2004-06-192-121/+208
* Tablespaces. Alternate database locations are dead, long live tablespaces.Tom Lane2004-06-183-22/+95
* Represent type-specific length coercion functions as pg_cast entries,Tom Lane2004-06-164-140/+203
* Clean up generation of default names for constraints, indexes, and serialTom Lane2004-06-101-116/+20
* Support assignment to subfields of composite columns in UPDATE and INSERT.Tom Lane2004-06-096-287/+626
* Infrastructure for I/O of composite types: arrange for the I/O routinesTom Lane2004-06-062-76/+13
* Remove some long-obsolete code that was causing a strange error messageTom Lane2004-06-041-16/+3
* Remove typeTypeFlag(), which was not only unused but entirely redundantTom Lane2004-06-031-11/+1
* OK, here's the final version of ALTER TABLE ... SET WITHOUT CLUSTER.Bruce Momjian2004-06-021-1/+9
* Some more de-FastList-ification.Tom Lane2004-06-012-29/+22
* Use the new List API function names throughout the backend, and disable theNeil Conway2004-05-3011-297/+297
* The patch adresses the TODO list item "Allow external interfaces toBruce Momjian2004-05-261-4/+17
* This patch implement the TODO [ALTER DATABASE foo OWNER TO bar].Bruce Momjian2004-05-261-2/+13
* Reimplement the linked list data structure used throughout the backend.Neil Conway2004-05-2611-364/+345
* Still another place to make the world safe for zero-column tables:Tom Lane2004-05-232-26/+30
* Promote row expressions to full-fledged citizens of the expression syntax,Tom Lane2004-05-104-336/+553
* ALTER TABLE rewrite. New cool stuff:Tom Lane2004-05-052-332/+286
* Change COPY CSV keyword to be:Bruce Momjian2004-04-212-9/+7
* Complete TODO item:Bruce Momjian2004-04-192-4/+32
* Tweak findTargetlistEntry so that bare names occurring in GROUP BY clausesTom Lane2004-04-183-10/+19
* Allow LIKE/ILIKE to appear in more places in a query.Bruce Momjian2004-04-051-7/+24
* Fix poor choice of error message in corner cases.Tom Lane2004-04-021-2/+3
* Clean up some code that had gotten a bit ugly through repeated revisions.Tom Lane2004-04-021-13/+10
* Get rid of crocky use of RangeVar nodes in parser to represent partiallyTom Lane2004-04-024-271/+220
* Replace TupleTableSlot convention for whole-row variables and functionTom Lane2004-04-011-6/+6
* Replace max_expr_depth parameter with a max_stack_depth parameter thatTom Lane2004-03-242-35/+4
* Revise syntax-error reporting behavior to give pleasant results forTom Lane2004-03-211-1/+7