aboutsummaryrefslogtreecommitdiff
path: root/src/backend/parser/gram.y
Commit message (Expand)AuthorAge
* Allow new values to be added to an existing enum type.Tom Lane2010-10-24
* Add semicolon, missed in previous patch. And update the keyword list inHeikki Linnakangas2010-10-22
* Make OFF keyword unreserved. It's not hard to imagine wanting to use 'off'Heikki Linnakangas2010-10-22
* Allow WITH clauses to be attached to INSERT, UPDATE, DELETE statements.Tom Lane2010-10-15
* Support triggers on views.Tom Lane2010-10-10
* Add a SECURITY LABEL command.Robert Haas2010-09-27
* Add ALTER TYPE ... ADD/DROP/ALTER/RENAME ATTRIBUTEPeter Eisentraut2010-09-26
* Remove cvs keywords from all files.Magnus Hagander2010-09-20
* Add missing processing of OptTemp in CREATE IF NOT EXISTS variantTom Lane2010-08-20
* Fix failure of "ALTER TABLE t ADD COLUMN c serial" when done by non-owner.Tom Lane2010-08-18
* Add xmlexists functionPeter Eisentraut2010-08-05
* CREATE TABLE IF NOT EXISTS.Robert Haas2010-07-25
* Fix ALTER LARGE OBJECT and GRANT ... ON LARGE OBJECT for large OIDs.Robert Haas2010-06-13
* Change the notation for calling functions with named parameters fromTom Lane2010-05-30
* Add an OR REPLACE option to CREATE LANGUAGE.Tom Lane2010-02-23
* Stamp HEAD as 9.0devel, and update various places that were referring to 8.5Tom Lane2010-02-17
* Replace the pg_listener-based LISTEN/NOTIFY mechanism with an in-memory queue.Tom Lane2010-02-16
* Extend the set of frame options supported for window functions.Tom Lane2010-02-12
* Remove old-style VACUUM FULL (which was known for a little while asTom Lane2010-02-08
* Type table featurePeter Eisentraut2010-01-28
* Add get_bit/set_bit functions for bit strings, paralleling those for bytea,Tom Lane2010-01-25
* Replace ALTER TABLE ... SET STATISTICS DISTINCT with a more general mechanism.Robert Haas2010-01-22
* Support rewritten-based full vacuum as VACUUM FULL. TraditionalItagaki Takahiro2010-01-06
* Support ALTER TABLESPACE name SET/RESET ( tablespace_options ).Robert Haas2010-01-05
* Update copyright for the year 2010.Bruce Momjian2010-01-02
* Zero-label enums:Bruce Momjian2009-12-26
* Allow the index name to be omitted in CREATE INDEX, causing the system toTom Lane2009-12-23
* Adjust naming of indexes and their columns per recent discussion.Tom Lane2009-12-23
* Support ORDER BY within aggregate function calls, at long last providing aTom Lane2009-12-15
* Add large object access control.Itagaki Takahiro2009-12-11
* Add exclusion constraints, which generalize the concept of uniqueness toTom Lane2009-12-07
* Add a WHEN clause to CREATE TRIGGER, allowing a boolean expression to beTom Lane2009-11-20
* Provide a parenthesized-options syntax for VACUUM, analogous to that recentlyTom Lane2009-11-16
* Change "name" nonterminal in cursor-related productions to cursor_name.Alvaro Herrera2009-11-11
* Support optional FROM/IN in FETCH and MOVEAlvaro Herrera2009-11-11
* Re-refactor the core scanner's API, in order to get out from under the problemTom Lane2009-11-09
* Fix WHERE CURRENT OF to work as designed within plpgsql. The argumentTom Lane2009-11-09
* Don't treat NEW and OLD as reserved words anymore. For the purposes of rulesTom Lane2009-11-05
* Make expression locations for LIKE and SIMILAR TO constructs uniformly pointTom Lane2009-11-04
* Support SQL-compliant triggers on columns, ie fire only if certain columnsTom Lane2009-10-14
* Use plurals (TABLES, FUNCTIONS, etc) in ALTER DEFAULT PRIVILEGES. We haveTom Lane2009-10-12
* Support GRANT/REVOKE ON ALL TABLES/SEQUENCES/FUNCTIONS IN SCHEMA.Tom Lane2009-10-12
* CREATE LIKE INCLUDING COMMENTS and STORAGE, and INCLUDING ALL shortcut. Itaga...Andrew Dunstan2009-10-12
* Support use of function argument names to identify which actual argumentsTom Lane2009-10-08
* Make it possibly to specify GUC params per user and per database.Alvaro Herrera2009-10-07
* Create an ALTER DEFAULT PRIVILEGES command, which allows users to adjustTom Lane2009-10-05
* Implement the DO statement to support execution of PL code without havingTom Lane2009-09-22
* Define a new, more extensible syntax for COPY options.Tom Lane2009-09-21
* Allow mixing of traditional and SQL:2008 LIMIT/OFFSET syntax. Being rigidTom Lane2009-08-18
* Add ALTER TABLE ... ALTER COLUMN ... SET STATISTICS DISTINCTTom Lane2009-08-02