summaryrefslogtreecommitdiff
path: root/src/backend/parser
AgeCommit message (Expand)Author
2025-05-21Fix regression with location calculation of nested statementsMichael Paquier
2025-05-15Fix Assert failure in XMLTABLE parserRichard Guo
2025-04-07Allow NOT NULL constraints to be added as NOT VALIDÁlvaro Herrera
2025-04-06Relax ordering-related hardcoded btree requirements in planningPeter Eisentraut
2025-04-05Fix parse_cte.c's failure to examine sub-WITHs in DML statements.Tom Lane
2025-04-05Avoid double transformation of json_array()'s subquery.Tom Lane
2025-04-04Extend ALTER DEFAULT PRIVILEGES to define default privileges for large objects.Fujii Masao
2025-04-02Change SQL-language functions to use the plan cache.Tom Lane
2025-04-02Add support for NOT ENFORCED in foreign key constraintsPeter Eisentraut
2025-03-28Add support for not-null constraints on virtual generated columnsPeter Eisentraut
2025-03-27Simplify syntax for ALTER TABLE ALTER CONSTRAINT NO INHERITÁlvaro Herrera
2025-03-19Update a code commentPeter Eisentraut
2025-03-13Fix ARRAY_SUBLINK and ARRAY[] for int2vector and oidvector input.Tom Lane
2025-03-09Don't try to parallelize array_agg() on an anonymous record type.Tom Lane
2025-03-05Add ALTER TABLE ... ALTER CONSTRAINT ... SET [NO] INHERITÁlvaro Herrera
2025-03-04Fix ALTER TABLE error messageÁlvaro Herrera
2025-02-19Add ATAlterConstraint struct for ALTER .. CONSTRAINTÁlvaro Herrera
2025-02-19Add support for LIKE in CREATE FOREIGN TABLEMichael Paquier
2025-02-07Virtual generated columnsPeter Eisentraut
2025-01-29Require callers of coerce_to_domain() to supply base type/typmod.Tom Lane
2025-01-29Handle default NULL insertion a little better.Tom Lane
2025-01-17Fix parsing of qualified relation names in RETURNING.Dean Rasheed
2025-01-16Add OLD/NEW support to RETURNING in DML queries.Dean Rasheed
2025-01-15Drop warning-free support for Flex 2.5.35Peter Eisentraut
2025-01-15Rename RowCompareType to CompareTypePeter Eisentraut
2025-01-11Add support for NOT ENFORCED in CHECK constraintsPeter Eisentraut
2025-01-07Fix error message wordingÁlvaro Herrera
2025-01-06flex code modernization: Replace YY_EXTRA_TYPE define with flex optionPeter Eisentraut
2025-01-01Update copyright for 2025Bruce Momjian
2024-12-25Partial pgindent of .l and .y filesPeter Eisentraut
2024-12-17Print out error position for some more DDLsMichael Paquier
2024-11-28Remove useless casts to (void *)Peter Eisentraut
2024-11-08Add pg_constraint rows for not-null constraintsÁlvaro Herrera
2024-10-31Make all ereport() calls within gram.y provide error locations.Tom Lane
2024-10-31Add a parse location field to struct FunctionParameter.Tom Lane
2024-10-27Remove unused #include's from backend .c filesPeter Eisentraut
2024-10-24Track more precisely query locations for nested statementsMichael Paquier
2024-10-22Improve parser's reporting of statement start locations.Tom Lane
2024-10-17Improve node type forward referencePeter Eisentraut
2024-10-16Fix typo in comment of transformJsonAggConstructor()Amit Langote
2024-10-14Track sort direction in SortGroupClausePeter Eisentraut
2024-09-30Show values of SET statements as constants in pg_stat_statementsMichael Paquier
2024-09-24Add ONLY support for VACUUM and ANALYZEDavid Rowley
2024-09-17Repair pg_upgrade for identity sequences with non-default persistence.Tom Lane
2024-09-17Add temporal FOREIGN KEY contraintsPeter Eisentraut
2024-09-17Add temporal PRIMARY KEY and UNIQUE constraintsPeter Eisentraut
2024-09-11Remove incorrect Assert.Tom Lane
2024-09-10Mark expressions nullable by grouping setsRichard Guo
2024-09-10Introduce an RTE for the grouping stepRichard Guo
2024-09-06SQL/JSON: Fix default ON ERROR behavior for JSON_TABLEAmit Langote