summaryrefslogtreecommitdiff
path: root/src/backend/parser
Commit message (Expand)AuthorAgeFilesLines
* Stamp HEAD as 9.0devel, and update various places that were referring to 8.5Tom Lane2010-02-171-2/+2
* Replace the pg_listener-based LISTEN/NOTIFY mechanism with an in-memory queue.Tom Lane2010-02-161-3/+9
* Wrap calls to SearchSysCache and related functions using macros.Robert Haas2010-02-147-90/+51
* Tweak the order of processing of WITH clauses so that they are processedTom Lane2010-02-121-16/+16
* Extend the set of frame options supported for window functions.Tom Lane2010-02-123-42/+199
* Remove old-style VACUUM FULL (which was known for a little while asTom Lane2010-02-081-4/+2
* Create a "relation mapping" infrastructure to support changing the relfilenodesTom Lane2010-02-071-2/+2
* Fix unwarranted assumption that a cached rowtype would stick aroundTom Lane2010-02-031-3/+3
* Type table featurePeter Eisentraut2010-01-282-17/+97
* Add get_bit/set_bit functions for bit strings, paralleling those for bytea,Tom Lane2010-01-251-3/+4
* Replace ALTER TABLE ... SET STATISTICS DISTINCT with a more general mechanism.Robert Haas2010-01-221-5/+14
* Fix unportable use of isxdigit() with char (rather than unsigned char)Tom Lane2010-01-161-11/+28
* Do parse analysis of an EXPLAIN's contained statement during the normalTom Lane2010-01-151-23/+11
* Make fixed_paramref_hook behave properly when there are 'unused' slotsTom Lane2010-01-131-3/+4
* Support rewritten-based full vacuum as VACUUM FULL. TraditionalItagaki Takahiro2010-01-061-2/+4
* Support ALTER TABLESPACE name SET/RESET ( tablespace_options ).Robert Haas2010-01-051-1/+19
* Fix a few places where we needed -I. in CPPFLAGS to work properly inTom Lane2010-01-051-2/+2
* Update copyright for the year 2010.Bruce Momjian2010-01-0220-40/+40
* Add an "argisrow" field to NullTest nodes, following a plan made way back inTom Lane2010-01-011-1/+2
* Remove a couple of unnecessary calls of CreateCacheMemoryContext. TheseTom Lane2009-12-271-4/+1
* Zero-label enums:Bruce Momjian2009-12-261-3/+8
* Allow the index name to be omitted in CREATE INDEX, causing the system toTom Lane2009-12-231-26/+18
* Adjust naming of indexes and their columns per recent discussion.Tom Lane2009-12-233-26/+57
* 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
* Avoid a premature coercion failure in transformSetOperationTree() whenTom Lane2009-12-161-20/+37
* Support ORDER BY within aggregate function calls, at long last providing aTom Lane2009-12-157-38/+198
* Add large object access control.Itagaki Takahiro2009-12-111-1/+22
* Add exclusion constraints, which generalize the concept of uniqueness toTom Lane2009-12-072-26/+169
* Add a WHEN clause to CREATE TRIGGER, allowing a boolean expression to beTom Lane2009-11-201-11/+18
* Provide a parenthesized-options syntax for VACUUM, analogous to that recentlyTom Lane2009-11-161-20/+61
* Clean up a couple of bizarre code formatting choices in recent CREATE LIKE pa...Tom Lane2009-11-131-6/+10
* A better fix for the "ARRAY[...]::domain" problem. The previous patch worked,Heikki Linnakangas2009-11-131-24/+16
* When you do "ARRAY[...]::domain", where domain is a domain over an array type,Heikki Linnakangas2009-11-131-1/+15
* Remove pg_parse_string_token() --- not needed anymore.Tom Lane2009-11-121-34/+1
* Remove plpgsql's separate lexer (finally!), in favor of using the core lexerTom Lane2009-11-122-21/+36
* Change "name" nonterminal in cursor-related productions to cursor_name.Alvaro Herrera2009-11-111-20/+23
* Support optional FROM/IN in FETCH and MOVEAlvaro Herrera2009-11-111-36/+42
* Re-refactor the core scanner's API, in order to get out from under the problemTom Lane2009-11-093-103/+105
* Fix WHERE CURRENT OF to work as designed within plpgsql. The argumentTom Lane2009-11-092-34/+36
* Don't treat NEW and OLD as reserved words anymore. For the purposes of rulesTom Lane2009-11-052-59/+20
* Make expression locations for LIKE and SIMILAR TO constructs uniformly pointTom Lane2009-11-041-8/+8
* Implement parser hooks for processing ColumnRef and ParamRef nodes, as per myTom Lane2009-10-3110-489/+849
* When FOR UPDATE/SHARE is used with LIMIT, put the LockRows plan nodeTom Lane2009-10-281-18/+37
* Make FOR UPDATE/SHARE in the primary query not propagate into WITH queries;Tom Lane2009-10-275-86/+50
* Re-implement EvalPlanQual processing to improve its performance and eliminateTom Lane2009-10-262-8/+13
* Remove add_missing_from GUC and associated parser support for "implicit RTEs".Tom Lane2009-10-213-102/+34
* Support SQL-compliant triggers on columns, ie fire only if certain columnsTom Lane2009-10-141-10/+31
* Code review for LIKE INCLUDING patch --- clean up some cosmetic and notTom Lane2009-10-131-1/+3
* Use plurals (TABLES, FUNCTIONS, etc) in ALTER DEFAULT PRIVILEGES. We haveTom Lane2009-10-121-6/+6