summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/ruleutils.c
AgeCommit message (Expand)Author
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-01Fix ALTER TABLE code to update domain constraints when needed.Tom Lane
2017-10-26Support domains over composite types.Tom Lane
2017-09-15Apply pg_get_serial_sequence() to identity column sequences as wellPeter Eisentraut
2017-09-08Allow a partitioned table to have a default partition.Robert Haas
2017-09-06Clean up handling of dropped columns in NAMEDTUPLESTORE RTEs.Tom Lane
2017-08-20Change tupledesc->attrs[n] to TupleDescAttr(tupledesc, n).Andres Freund
2017-08-16Fix up some misusage of appendStringInfo() and friendsPeter Eisentraut
2017-08-14Final pgindent + perltidy run for v10.Tom Lane
2017-08-10Improve the error message when creating an empty range partition.Robert Haas
2017-07-24Ensure that pg_get_ruledef()'s output matches pg_get_viewdef()'s.Tom Lane
2017-07-21Use MINVALUE/MAXVALUE instead of UNBOUNDED for range partition bounds.Dean Rasheed
2017-07-20Fix dumping of outer joins with empty qual lists.Tom Lane
2017-07-14Code review for NextValueExpr expression node type.Tom Lane
2017-07-13Fix dumping of FUNCTION RTEs that contain non-function-call expressions.Tom Lane
2017-07-12Fix ruleutils.c for domain-over-array cases, too.Tom Lane
2017-06-21Phase 3 of pgindent updates.Tom Lane
2017-06-21Phase 2 of pgindent updates.Tom Lane
2017-06-21Initial pgindent run with pg_bsd_indent version 2.0.Tom Lane
2017-06-04Replace over-optimistic Assert in partitioning code with a runtime test.Tom Lane
2017-05-29Code review focused on new node types added by partitioning support.Tom Lane
2017-05-17Post-PG 10 beta1 pgindent runBruce Momjian
2017-05-14Standardize terminology for pg_statistic_ext entries.Tom Lane
2017-05-13Teach \d+ to show partitioning constraints.Robert Haas
2017-05-12Change CREATE STATISTICS syntaxAlvaro Herrera
2017-04-26pg_get_partkeydef: return NULL for non-partitionsStephen Frost
2017-04-17Rename columns in new pg_statistic_ext catalogAlvaro Herrera
2017-04-10Improve castNode notation by introducing list-extraction-specific variants.Tom Lane
2017-04-06Identity columnsPeter Eisentraut
2017-04-05Collect and use multi-column dependency statsSimon Riggs
2017-04-01Add infrastructure to support EphemeralNamedRelation references.Kevin Grittner
2017-03-27Fix a couple of problems in pg_get_statisticsextdefAlvaro Herrera
2017-03-25Faster expression evaluation and targetlist projection.Andres Freund
2017-03-24Implement multivariate n-distinct coefficientsAlvaro Herrera
2017-03-12Use wrappers of PG_DETOAST_DATUM_PACKED() more.Noah Misch
2017-03-08Support XMLTABLE query expressionAlvaro Herrera
2017-03-03Improve error reporting for tuple-routing failures.Robert Haas
2017-02-21Make more use of castNode()Peter Eisentraut
2017-02-06Fix typos in comments.Heikki Linnakangas
2017-01-24Reindent table partitioning code.Robert Haas
2017-01-21Move some things from builtins.h to new header filesPeter Eisentraut
2017-01-03Update copyright via script for 2017Bruce Momjian
2016-12-07Implement table partitioning.Robert Haas
2016-11-23Make sure ALTER TABLE preserves index tablespaces.Tom Lane
2016-11-04Implement syntax for transition tables in AFTER triggers.Kevin Grittner
2016-08-17Improve parsetree representation of special functions such as CURRENT_DATE.Tom Lane
2016-08-07Fix crash when pg_get_viewdef_name_ext() is passed a non-view relation.Tom Lane
2016-08-03Make INSERT-from-multiple-VALUES-rows handle targetlist indirection better.Tom Lane