summaryrefslogtreecommitdiff
path: root/src/backend/parser
AgeCommit message (Expand)Author
2013-12-03Fix crash in assign_collations_walker for EXISTS with empty SELECT list.Tom Lane
2013-11-24Fix array slicing of int2vector and oidvector values.Tom Lane
2013-11-06Support default arguments and named-argument notation for window functions.Tom Lane
2013-11-06Improve the error message given for modifying a window with frame clause.Tom Lane
2013-07-23Change post-rewriter representation of dropped columns in joinaliasvars.Tom Lane
2013-06-09Remove unnecessary restrictions about RowExprs in transformAExprIn().Tom Lane
2013-06-08Don't downcase non-ascii identifier chars in multi-byte encodings.Andrew Dunstan
2013-06-05Put analyze_keyword back in explain_option_name production.Tom Lane
2013-06-03Allow type_func_name_keywords in some places where they weren't before.Tom Lane
2013-01-30Fix grammar for subscripting or field selection from a sub-SELECT result.Tom Lane
2012-12-23Prevent failure when RowExpr or XmlExpr is parse-analyzed twice.Tom Lane
2012-11-29Fix assorted bugs in CREATE/DROP INDEX CONCURRENTLY.Tom Lane
2012-11-12Check for stack overflow in transformSetOperationTree().Tom Lane
2012-10-24Prevent parser from believing that views have system columns.Tom Lane
2012-08-27Fix DROP INDEX CONCURRENTLY IF EXISTS.Tom Lane
2012-07-31Fix WITH attached to a nested set operation (UNION/INTERSECT/EXCEPT).Tom Lane
2012-07-24Change syntax of new CHECK NO INHERIT constraintsAlvaro Herrera
2012-07-16Avoid pre-determining index names during CREATE TABLE LIKE parsing.Tom Lane
2012-06-30Prevent CREATE TABLE LIKE/INHERITS from (mis) copying whole-row Vars.Tom Lane
2012-06-13Deprecate use of GLOBAL and LOCAL in temp table creation.Tom Lane
2012-06-10Run pgindent on 9.2 source tree in preparation for first 9.3Bruce Momjian
2012-06-10Revert error message on GLOBAL/LOCAL pending further discussionSimon Riggs
2012-06-09Add ERROR msg for GLOBAL/LOCAL TEMP is not yet implementedSimon Riggs
2012-05-16Change COLLATION keyword categoryPeter Eisentraut
2012-04-24Lots of doc corrections.Robert Haas
2012-04-21Recast "ONLY" column CHECK constraints as NO INHERITAlvaro Herrera
2012-04-06Add DROP INDEX CONCURRENTLY [IF EXISTS], uses ShareUpdateExclusiveLockSimon Riggs
2012-04-03Add support for renaming domain constraintsPeter Eisentraut
2012-03-27Bend parse location rules for the convenience of pg_stat_statements.Tom Lane
2012-03-27Add some infrastructure for contrib/pg_stat_statements.Tom Lane
2012-03-23Code review for protransform patches.Tom Lane
2012-03-21Clean up compiler warnings from unused variables with asserts disabledPeter Eisentraut
2012-03-20Restructure SELECT INTO's parsetree representation into CreateTableAsStmt.Tom Lane
2012-03-10Add support for renaming constraintsPeter Eisentraut
2012-03-03Allow CREATE TABLE (LIKE ...) from composite typePeter Eisentraut
2012-03-02Add COLLATION FOR expressionPeter Eisentraut
2012-02-27Call check_keywords.pl in maintainer-checkPeter Eisentraut
2012-02-15Make CREATE/ALTER FUNCTION support NOT LEAKPROOF.Robert Haas
2012-02-14Preserve column names in the execution-time tupledesc for a RowExpr.Tom Lane
2012-02-14Allow LEAKPROOF functions for better performance of security views.Robert Haas
2012-02-09Add new keywords SNAPSHOT and TYPES to the keyword list in gram.yHeikki Linnakangas
2012-02-08Check misplaced window functions before checking aggregate/group by sanity.Tom Lane
2012-01-23ALTER <thing> [IF EXISTS] ... allows silent DDL if required,Simon Riggs
2012-01-16Prevent adding relations to a concurrently dropped schema.Robert Haas
2012-01-10Support CREATE TABLE (LIKE ...) with foreign tables and viewsPeter Eisentraut
2012-01-07Rename the internal structures of the CREATE TABLE (LIKE ...) facilityPeter Eisentraut
2012-01-05Improve ALTER DOMAIN / DROP CONSTRAINT with nonexistent constraintPeter Eisentraut
2012-01-02Fix coerce_to_target_type for coerce_type's klugy handling of COLLATE.Tom Lane
2012-01-01Update copyright notices for year 2012.Bruce Momjian
2011-12-22Add a security_barrier option for views.Robert Haas