summaryrefslogtreecommitdiff
path: root/src/backend/parser
AgeCommit message (Expand)Author
2021-04-12Fix old bug with coercing the result of a COLLATE expression.Tom Lane
2021-03-12Forbid marking an identity column as nullable.Tom Lane
2021-02-26Fix list-manipulation bug in WITH RECURSIVE processing.Tom Lane
2021-02-08Fix mishandling of column-level SELECT privileges for join aliases.Tom Lane
2020-12-01Ensure that expandTableLikeClause() re-examines the same table.Tom Lane
2020-11-19Further fixes for CREATE TABLE LIKE: cope with self-referential FKs.Tom Lane
2020-10-28Calculate extraUpdatedCols in query rewriter, not parser.Tom Lane
2020-10-07Fix optimization hazard in gram.y's makeOrderedSetArgs(), redux.Tom Lane
2020-09-29Add for_each_from, to simplify loops starting from non-first list cells.Tom Lane
2020-09-28Assign collations in partition bound expressions.Tom Lane
2020-09-14Message fixes and style improvementsPeter Eisentraut
2020-09-07Clarify comments in enforce_generic_type_consistency().Tom Lane
2020-08-21Fix handling of CREATE TABLE LIKE with inheritance.Tom Lane
2020-05-20part_strategy does not need its very own keyword classification.Tom Lane
2020-05-18WITH TIES: number of rows is optional and defaults to oneAlvaro Herrera
2020-05-16Run pgindent with new pg_bsd_indent version 2.1.1.Tom Lane
2020-05-14Initial pgindent and pgperltidy run for v13.Tom Lane
2020-05-13Dial back -Wimplicit-fallthrough to level 3Alvaro Herrera
2020-05-12Add -Wimplicit-fallthrough to CFLAGS and CXXFLAGSAlvaro Herrera
2020-04-20Add ALTER .. NO DEPENDS ONAlvaro Herrera
2020-04-09Fix CREATE TABLE LIKE INCLUDING GENERATED column order issuePeter Eisentraut
2020-04-08Revert 0f5ca02f53Alexander Korotkov
2020-04-08Fix crash when using COLLATE in partition bound expressionsMichael Paquier
2020-04-08Put back mistakenly removed #include.Tom Lane
2020-04-07Implement waiting for given lsn at transaction startAlexander Korotkov
2020-04-07Support FETCH FIRST WITH TIESAlvaro Herrera
2020-04-04Remove bogus Assert, add some regression test cases showing why.Tom Lane
2020-04-04Skip WAL for new relfilenodes, under wal_level=minimal.Noah Misch
2020-04-02Add SQL functions for Unicode normalizationPeter Eisentraut
2020-03-30Implement operator class parametersAlexander Korotkov
2020-03-25Go back to returning int from ereport auxiliary functions.Tom Lane
2020-03-24Improve the internal implementation of ereport().Tom Lane
2020-03-22Revert "Skip WAL for new relfilenodes, under wal_level=minimal."Noah Misch
2020-03-21Skip WAL for new relfilenodes, under wal_level=minimal.Noah Misch
2020-03-19Introduce "anycompatible" family of polymorphic types.Tom Lane
2020-03-17Refactor our checks for valid function and aggregate signatures.Tom Lane
2020-03-17Adjust handling of an ANYARRAY actual input for an ANYARRAY argument.Tom Lane
2020-03-14Restructure polymorphic-type resolution in funcapi.c.Tom Lane
2020-03-10Ensure that CREATE TABLE LIKE copies any NO INHERIT constraint property.Tom Lane
2020-03-06Allow Unicode escapes in any server encoding, not only UTF-8.Tom Lane
2020-03-06Allow ALTER TYPE to change some properties of a base type.Tom Lane
2020-03-04Introduce macros for typalign and typstorage constants.Tom Lane
2020-03-03Fix assertion failure with ALTER TABLE ATTACH PARTITION and indexesMichael Paquier
2020-02-19Remove support for upgrading extensions from "unpackaged" state.Tom Lane
2020-02-17Fill in extraUpdatedCols in logical replicationPeter Eisentraut
2020-01-29Invent "trusted" extensions, and remove the pg_pltemplate catalog.Tom Lane
2020-01-15Restructure ALTER TABLE execution to fix assorted bugs.Tom Lane
2020-01-14ALTER TABLE ... ALTER COLUMN ... DROP EXPRESSIONPeter Eisentraut
2020-01-13Reduce size of backend scanner's tables.Tom Lane
2020-01-09Reconsider the representation of join alias Vars.Tom Lane