summaryrefslogtreecommitdiff
path: root/src/backend/utils/adt/ruleutils.c
AgeCommit message (Expand)Author
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
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-27Fix 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-24Move keywords.c/kwlookup.c into src/common/.Tom Lane
2016-02-07Fix deparsing of ON CONFLICT arbiter WHERE clauses.Tom Lane
2016-01-18Restructure 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-23Allow 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-24pgindent 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-12Replace 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
2015-05-01Deparse named arguments to use the new => operator instead of :=Robert Haas
2015-05-01Allow FDWs and custom scan providers to replace joins with scans.Robert Haas
2015-04-26Add transforms featurePeter Eisentraut
2015-03-30Be more careful about printing constants in ruleutils.c.Tom Lane
2015-03-15Improve representation of PlanRowMark.Tom Lane
2015-02-25Fix dumping of views that are just VALUES(...) but have column aliases.Tom Lane
2015-01-15Improve performance of EXPLAIN with large range tables.Tom Lane
2015-01-06Update copyright for 2015Bruce Momjian
2014-11-21Rearrange CustomScan API.Tom Lane
2014-11-07Introduce custom path and scan providers.Robert Haas
2014-10-08Split builtins.h to a new header ruleutils.hAlvaro Herrera
2014-10-07Implement SKIP LOCKED for row-level locksAlvaro Herrera
2014-07-19Partial fix for dropped columns in functions returning composite.Tom Lane