summaryrefslogtreecommitdiff
path: root/src/include/parser
AgeCommit message (Expand)Author
2010-01-02Update copyright for the year 2010.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-15Support ORDER BY within aggregate function calls, at long last providing aTom Lane
2009-12-07Add exclusion constraints, which generalize the concept of uniqueness toTom Lane
2009-11-12Remove pg_parse_string_token() --- not needed anymore.Tom Lane
2009-11-09Re-refactor the core scanner's API, in order to get out from under the problemTom Lane
2009-11-05Don't treat NEW and OLD as reserved words anymore. For the purposes of rulesTom 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-12Support GRANT/REVOKE ON ALL TABLES/SEQUENCES/FUNCTIONS IN SCHEMA.Tom Lane
2009-10-12CREATE LIKE INCLUDING COMMENTS and STORAGE, and INCLUDING ALL shortcut. Itaga...Andrew Dunstan
2009-10-08Support use of function argument names to identify which actual argumentsTom Lane
2009-09-22Unicode escapes in E'...' stringsPeter Eisentraut
2009-09-22Implement the DO statement to support execution of PL code without havingTom Lane
2009-09-09Fix bug with WITH RECURSIVE immediately inside WITH RECURSIVE. 99% of theTom Lane
2009-08-27Modify the definition of window-function PARTITION BY and ORDER BY clausesTom Lane
2009-07-16Make backend header files C++ safePeter Eisentraut
2009-07-14Tweak the core scanner so that it can be used by plpgsql too.Tom Lane
2009-07-13Convert the core lexer and parser into fully reentrant code, by making useTom Lane
2009-07-13Fix up PGDLLIMPORT marking for standard_conforming_strings. Moving itTom Lane
2009-07-12Move some declarations in the raw-parser header files to create a clearerTom Lane
2009-06-118.4 pgindent run, with new combined Linux/FreeBSD/MinGW typedef listBruce Momjian
2009-05-12Do some minor code refactoring in preparation for changing the APIs ofTom Lane
2009-04-19Rethink the idea of having plpgsql depend on parser/gram.h. Aside from theTom Lane
2009-04-06Rename the new CREATE DATABASE options to set collation and ctype intoHeikki Linnakangas
2009-03-07Separate the key word list that lived in keywords.c into a new header fileAlvaro Herrera
2009-01-22Support column-level privileges, as required by SQL standard.Tom Lane
2009-01-01Update copyright for 2009.Bruce Momjian
2008-12-28Support window functions a la SQL:2008.Tom Lane
2008-12-18Code review for function default parameters patch. Fix numerous problems asTom Lane
2008-12-13Fix failure to ensure that a snapshot is available to datatype input functionsTom Lane
2008-12-04Default values for function argumentsPeter Eisentraut
2008-10-08Modify the parser's error reporting to include a specific hint for the caseTom Lane
2008-10-06Fix GetCTEForRTE() to deal with the possibility that the RTE it's given cameTom Lane
2008-10-06Fix the implicit-RTE code to be able to handle implicit RTEs for CTEs, asTom Lane
2008-10-04Implement SQL-standard WITH clauses, including WITH RECURSIVE.Tom Lane
2008-09-01Add a bunch of new error location reports to parse-analysis error messages.Tom Lane
2008-08-28Extend the parser location infrastructure to include a location field inTom Lane
2008-08-25Move exprType(), exprTypmod(), expression_tree_walker(), and related routinesTom Lane
2008-08-07Teach the system how to use hashing for UNION. (INTERSECT/EXCEPT will follow,Tom Lane
2008-08-02Rearrange the querytree representation of ORDER BY/GROUP BY/DISTINCT itemsTom Lane
2008-07-31Fix parser so that we don't modify the user-written ORDER BY list in orderTom Lane
2008-07-30Replace the hard-wired type knowledge in TypeCategory() and IsPreferredType()Tom Lane
2008-07-16Support "variadic" functions, which can accept a variable number of argumentsTom Lane
2008-07-03Add a function pg_get_keywords() to let clients find out the set of keywordsTom Lane
2008-06-19Improve our #include situation by moving pointer types away from theAlvaro Herrera