summaryrefslogtreecommitdiff
path: root/src/backend/parser
AgeCommit message (Expand)Author
2018-03-06Fix bogus Name assignment in CreateStatisticsAlvaro Herrera
2018-03-06Add parenthesized options syntax for ANALYZE.Andres Freund
2018-03-05Clone extended stats in CREATE TABLE (LIKE INCLUDING ALL)Alvaro Herrera
2018-03-02Add prokind column, replacing proisagg and proiswindowPeter Eisentraut
2018-02-23Support parameters in CALLPeter Eisentraut
2018-02-19Allow UNIQUE indexes on partitioned tablesAlvaro Herrera
2018-02-12get_relid_attribute_name is dead, long live get_attnameAlvaro Herrera
2018-02-10Fix oversight in CALL argument handling, and do some minor cleanup.Tom Lane
2018-02-07Support all SQL:2011 options for window frame clauses.Tom Lane
2018-02-02Fix application of identity values in some casesPeter Eisentraut
2018-01-31Fix typo: colums -> columns.Robert Haas
2018-01-26Avoid unnecessary use of pg_strcasecmp for already-downcased identifiers.Tom Lane
2018-01-26Remove the obsolete WITH clause of CREATE FUNCTION.Tom Lane
2018-01-19Replace AclObjectKind with ObjectTypePeter Eisentraut
2018-01-19Replace GrantObjectType with ObjectTypePeter Eisentraut
2018-01-19Local partitioned indexesAlvaro Herrera
2018-01-09Don't allow VACUUM VERBOSE ANALYZE VERBOSE.Robert Haas
2018-01-03Update copyright for 2018Bruce Momjian
2017-12-13Fix crash when using CALL on an aggregatePeter Eisentraut
2017-12-09Fix typoMagnus Hagander
2017-12-08Prohibit identity columns on typed tables and partitionsPeter Eisentraut
2017-12-01Re-allow INSERT .. ON CONFLICT DO NOTHING on partitioned tables.Robert Haas
2017-11-30SQL proceduresPeter Eisentraut
2017-11-10Add some const decorations to prototypesPeter Eisentraut
2017-11-09Add hash partitioning.Robert Haas
2017-11-08Change TRUE/FALSE to true/falsePeter Eisentraut
2017-11-06Always require SELECT permission for ON CONFLICT DO UPDATE.Dean Rasheed
2017-10-27Dept of second thoughts: keep aliasp_item in sync with tlistitem.Tom Lane
2017-10-27Fix crash when columns have been added to the end of a view.Tom Lane
2017-10-26Support domains over composite types.Tom Lane
2017-10-16Fix incorrect handling of CTEs and ENRs as DML target relations.Tom Lane
2017-10-16Exclude flex-generated code from coverage testingPeter Eisentraut
2017-10-03Allow multiple tables to be specified in one VACUUM or ANALYZE command.Tom Lane
2017-09-30Support arrays over domains.Tom Lane
2017-09-16After a MINVALUE/MAXVALUE bound, allow only more of the same.Robert Haas
2017-09-08Allow a partitioned table to have a default partition.Robert Haas
2017-09-07Reduce excessive dereferencing of function pointersPeter Eisentraut
2017-09-06Allow SET STATISTICS on expression indexesSimon Riggs
2017-09-06Clean up handling of dropped columns in NAMEDTUPLESTORE RTEs.Tom Lane
2017-08-23Improve plural handling in error messagePeter Eisentraut
2017-08-20Change tupledesc->attrs[n] to TupleDescAttr(tupledesc, n).Andres Freund
2017-08-14Final pgindent + perltidy run for v10.Tom Lane
2017-08-04Further unify ROLE and USER command grammar rulesPeter Eisentraut
2017-08-03Allow a foreign table CHECK constraint to be initially NOT VALID.Robert Haas
2017-08-03Teach map_partition_varattnos to handle whole-row expressions.Robert Haas
2017-08-02Fix OBJECT_TYPE/OBJECT_DOMAIN confusionPeter Eisentraut
2017-07-21Use MINVALUE/MAXVALUE instead of UNBOUNDED for range partition bounds.Dean Rasheed
2017-06-27Re-allow SRFs and window functions within sub-selects within aggregates.Tom Lane
2017-06-22Fix IF NOT EXISTS in CREATE STATISTICSAlvaro Herrera
2017-06-21Phase 3 of pgindent updates.Tom Lane