summaryrefslogtreecommitdiff
path: root/src/backend/parser
AgeCommit message (Expand)Author
2010-02-17Stamp HEAD as 9.0devel, and update various places that were referring to 8.5Tom Lane
2010-02-16Replace the pg_listener-based LISTEN/NOTIFY mechanism with an in-memory queue.Tom Lane
2010-02-14Wrap calls to SearchSysCache and related functions using macros.Robert Haas
2010-02-12Tweak the order of processing of WITH clauses so that they are processedTom Lane
2010-02-12Extend the set of frame options supported for window functions.Tom Lane
2010-02-08Remove old-style VACUUM FULL (which was known for a little while asTom Lane
2010-02-07Create a "relation mapping" infrastructure to support changing the relfilenodesTom Lane
2010-02-03Fix unwarranted assumption that a cached rowtype would stick aroundTom Lane
2010-01-28Type table featurePeter Eisentraut
2010-01-25Add get_bit/set_bit functions for bit strings, paralleling those for bytea,Tom Lane
2010-01-22Replace ALTER TABLE ... SET STATISTICS DISTINCT with a more general mechanism.Robert Haas
2010-01-16Fix unportable use of isxdigit() with char (rather than unsigned char)Tom Lane
2010-01-15Do parse analysis of an EXPLAIN's contained statement during the normalTom Lane
2010-01-13Make fixed_paramref_hook behave properly when there are 'unused' slotsTom Lane
2010-01-06Support rewritten-based full vacuum as VACUUM FULL. TraditionalItagaki Takahiro
2010-01-05Support ALTER TABLESPACE name SET/RESET ( tablespace_options ).Robert Haas
2010-01-05Fix a few places where we needed -I. in CPPFLAGS to work properly inTom Lane
2010-01-02Update copyright for the year 2010.Bruce Momjian
2010-01-01Add an "argisrow" field to NullTest nodes, following a plan made way back inTom Lane
2009-12-27Remove a couple of unnecessary calls of CreateCacheMemoryContext. TheseTom Lane
2009-12-26Zero-label enums:Bruce Momjian
2009-12-23Allow the index name to be omitted in CREATE INDEX, causing the system toTom Lane
2009-12-23Adjust naming of indexes and their columns per recent discussion.Tom Lane
2009-12-22Disallow comments on columns of relation types other than tables, views,Tom Lane
2009-12-20There is no good reason for the CREATE TABLE LIKE INCLUDING COMMENTS code toTom Lane
2009-12-16Avoid a premature coercion failure in transformSetOperationTree() whenTom Lane
2009-12-15Support ORDER BY within aggregate function calls, at long last providing aTom Lane
2009-12-11Add large object access control.Itagaki Takahiro
2009-12-07Add exclusion constraints, which generalize the concept of uniqueness toTom Lane
2009-11-20Add a WHEN clause to CREATE TRIGGER, allowing a boolean expression to beTom Lane
2009-11-16Provide a parenthesized-options syntax for VACUUM, analogous to that recentlyTom Lane
2009-11-13Clean up a couple of bizarre code formatting choices in recent CREATE LIKE pa...Tom Lane
2009-11-13A better fix for the "ARRAY[...]::domain" problem. The previous patch worked,Heikki Linnakangas
2009-11-13When you do "ARRAY[...]::domain", where domain is a domain over an array type,Heikki Linnakangas
2009-11-12Remove pg_parse_string_token() --- not needed anymore.Tom Lane
2009-11-12Remove plpgsql's separate lexer (finally!), in favor of using the core lexerTom Lane
2009-11-11Change "name" nonterminal in cursor-related productions to cursor_name.Alvaro Herrera
2009-11-11Support optional FROM/IN in FETCH and MOVEAlvaro Herrera
2009-11-09Re-refactor the core scanner's API, in order to get out from under the problemTom Lane
2009-11-09Fix WHERE CURRENT OF to work as designed within plpgsql. The argumentTom Lane
2009-11-05Don't treat NEW and OLD as reserved words anymore. For the purposes of rulesTom Lane
2009-11-04Make expression locations for LIKE and SIMILAR TO constructs uniformly pointTom Lane
2009-10-31Implement parser hooks for processing ColumnRef and ParamRef nodes, as per myTom Lane
2009-10-28When FOR UPDATE/SHARE is used with LIMIT, put the LockRows plan nodeTom Lane
2009-10-27Make FOR UPDATE/SHARE in the primary query not propagate into WITH queries;Tom Lane
2009-10-26Re-implement EvalPlanQual processing to improve its performance and eliminateTom Lane
2009-10-21Remove add_missing_from GUC and associated parser support for "implicit RTEs".Tom Lane
2009-10-14Support SQL-compliant triggers on columns, ie fire only if certain columnsTom Lane
2009-10-13Code review for LIKE INCLUDING patch --- clean up some cosmetic and notTom Lane
2009-10-12Use plurals (TABLES, FUNCTIONS, etc) in ALTER DEFAULT PRIVILEGES. We haveTom Lane