summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/ruleutils.c
AgeCommit message (Expand)Author
2019-11-16Further fix dumping of views that contain just VALUES(...).Tom Lane
2019-08-05Require the schema qualification in pg_temp.type_name(arg).Noah Misch
2019-06-12Fix incorrect printing of queries with duplicated join names.Tom Lane
2018-07-31Further fixes for quoted-list GUC values in pg_dump and ruleutils.c.Tom Lane
2018-07-28Document security implications of qualified names.Noah Misch
2018-03-21Fix mishandling of quoted-list GUC values in pg_dump and ruleutils.c.Tom Lane
2018-03-19Fix some corner-case issues in REFRESH MATERIALIZED VIEW CONCURRENTLY.Tom Lane
2018-02-26Avoid using unsafe search_path settings during dump and restore.Tom Lane
2017-07-24Ensure that pg_get_ruledef()'s output matches pg_get_viewdef()'s.Tom Lane
2017-07-20Fix dumping of outer joins with empty qual lists.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-02-06Fix typos in comments.Heikki Linnakangas
2016-11-23Make sure ALTER TABLE preserves index tablespaces.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
2016-07-29Eliminate a few more user-visible "cache lookup failed" errors.Robert Haas
2016-07-28Fix assorted fallout from IS [NOT] NULL patch.Tom Lane
2016-07-26Change various deparsing functions to return NULL for invalid input.Robert Haas
2016-07-01Be more paranoid in ruleutils.c's get_variable().Tom Lane
2016-06-26Rethink node-level representation of partial-aggregation modes.Tom Lane
2016-05-11Fix assorted missing infrastructure for ON CONFLICT.Tom Lane
2016-04-27Fix EXPLAIN VERBOSE output for parallel aggregate.Robert Haas
2016-04-26Fix pg_get_functiondef to dump parallel-safety markings.Robert Haas
2016-04-21Fix ruleutils.c's dumping of ScalarArrayOpExpr containing an EXPR_SUBLINK.Tom Lane
2016-04-08Revert CREATE INDEX ... INCLUDING ...Teodor Sigaev
2016-04-08CREATE INDEX ... INCLUDING (column[, ...])Teodor Sigaev
2016-03-23Move keywords.c/kwlookup.c into src/common/.Tom Lane
2016-02-07Fix deparsing of ON CONFLICT arbiter WHERE clauses.Tom Lane
2016-01-17Restructure index access method API to hide most of it at the C level.Tom Lane
2016-01-02Update copyright for 2016Bruce Momjian
2016-01-01Teach flatten_reloptions() to quote option values safely.Tom Lane
2015-12-22Allow omitting one or both boundaries in an array slice specifier.Tom Lane
2015-11-20Fix handling of inherited check constraints in ALTER COLUMN TYPE (again).Tom Lane
2015-11-16Speed up ruleutils' name de-duplication code, and fix overlength-name case.Tom Lane
2015-11-15Fix ruleutils.c's dumping of whole-row Vars in ROW() and VALUES() contexts.Tom Lane
2015-07-25Redesign tablesample method API, and do extensive code review.Tom Lane
2015-07-02Use appendStringInfoString/Char et al where appropriate.Heikki Linnakangas
2015-06-27Avoid passing NULL to memcmp() in lookups of zero-argument functions.Tom Lane
2015-05-28Fix pg_get_functiondef() to print a function's LEAKPROOF property.Tom Lane
2015-05-24Manual cleanup of pgindent results.Tom Lane
2015-05-23pgindent run for 9.5Bruce Momjian
2015-05-23Fix yet another bug in ON CONFLICT rule deparsing.Andres Freund
2015-05-19Various fixes around ON CONFLICT for rule deparsing.Andres Freund
2015-05-16Support GROUPING SETS, CUBE and ROLLUP.Andres Freund
2015-05-15TABLESAMPLE, SQL Standard and extensibleSimon Riggs
2015-05-11Replace some appendStringInfo* calls with more appropriate variantsPeter Eisentraut
2015-05-10Code review for foreign/custom join pushdown patch.Tom Lane
2015-05-08Add support for INSERT ... ON CONFLICT DO NOTHING/UPDATE.Andres Freund
2015-05-07Fix indentation that could mask a future bugMagnus Hagander