summaryrefslogtreecommitdiff
path: root/src/test/regress/sql/with.sql
AgeCommit message (Expand)Author
2023-02-15Rename force_parallel_mode to debug_parallel_queryDavid Rowley
2022-12-16Fix inability to reference CYCLE column from inside its CTE.Tom Lane
2022-10-16Fix EXPLAIN of SEARCH BREADTH FIRST with a constant initial value.Tom Lane
2022-09-15Fix grammar in error messageJohn Naylor
2022-05-18Check column list length in XMLTABLE/JSON_TABLE aliasAlvaro Herrera
2022-04-23Fix incautious CTE matching in rewriteSearchAndCycle().Tom Lane
2022-04-21Remove inadequate assertion check in CTE inlining.Tom Lane
2022-03-28Add support for MERGE SQL commandAlvaro Herrera
2022-02-08Rearrange core regression tests to reduce cross-script dependencies.Tom Lane
2021-12-30Fix overly generic name in with.sql test.Thomas Munro
2021-09-16Fix EXPLAIN to handle SEARCH BREADTH FIRST queries.Tom Lane
2021-09-08Fix rewriter to set hasModifyingCTE correctly on rewritten queries.Tom Lane
2021-07-09Reject cases where a query in WITH rewrites to just NOTIFY.Tom Lane
2021-02-27Enhanced cycle mark valuesPeter Eisentraut
2021-02-26Fix list-manipulation bug in WITH RECURSIVE processing.Tom Lane
2021-02-07Revert "Propagate CTE property flags when copying a CTE list into a rule."Tom Lane
2021-02-07Propagate CTE property flags when copying a CTE list into a rule.Tom Lane
2021-02-01SEARCH and CYCLE clausesPeter Eisentraut
2020-11-19Remove undocumented IS [NOT] OF syntax.Tom Lane
2020-11-19Hash support for row typesPeter Eisentraut
2020-11-18Add more tests for hashing and hash-based plansPeter Eisentraut
2020-10-12Adjust cycle detection examples and testsPeter Eisentraut
2018-04-12Revert MERGE patchSimon Riggs
2018-04-03WITH support in MERGESimon Riggs
2018-03-15Clean up duplicate table and function names in regression tests.Tom Lane
2017-10-16Fix incorrect handling of CTEs and ENRs as DML target relations.Tom Lane
2017-04-01Add infrastructure to support EphemeralNamedRelation references.Kevin Grittner
2017-01-25Change unknown-type literals to type text in SELECT and RETURNING lists.Tom Lane
2016-10-10Make regression tests less dependent on hash table order.Andres Freund
2015-12-10Fix ON CONFLICT UPDATE bug breaking AFTER UPDATE triggers.Andres Freund
2015-05-08Add support for INSERT ... ON CONFLICT DO NOTHING/UPDATE.Andres Freund
2015-02-24Improve parser's one-extra-token lookahead mechanism.Tom Lane
2013-02-01Add CREATE RECURSIVE VIEW syntaxPeter Eisentraut
2012-10-12Fix oversight in new code for printing rangetable aliases.Tom Lane
2012-09-05Fix PARAM_EXEC assignment mechanism to be safe in the presence of WITH.Tom Lane
2012-08-15Fix rescan logic in nodeCtescan.Tom Lane
2012-07-31Fix WITH attached to a nested set operation (UNION/INTERSECT/EXCEPT).Tom Lane
2012-04-26Fix planner's handling of RETURNING lists in writable CTEs.Tom Lane
2012-01-29Fix handling of init_plans list in inheritance_planner().Tom Lane
2011-06-07Fix rewriter to cope (more or less) with CTEs in the query being rewritten.Tom Lane
2011-02-27Refactor the executor's API to support data-modifying CTEs better.Tom Lane
2011-02-26Fix order of shutdown processing when CTEs contain inter-references.Tom Lane
2011-02-25Support data-modifying commands (INSERT/UPDATE/DELETE) in WITH.Tom Lane
2010-10-15Allow WITH clauses to be attached to INSERT, UPDATE, DELETE statements.Tom Lane
2009-09-09Fix bug with WITH RECURSIVE immediately inside WITH RECURSIVE. 99% of theTom Lane
2009-07-06Fix handling of changed-Param signaling for CteScan plan nodes. We were usingTom Lane
2009-03-30Fix an oversight in the support for storing/retrieving "minimal tuples" inTom Lane
2008-10-14Add docs and regression test about sorting the output of a recursive query inTom Lane
2008-10-14Eliminate unnecessary array[] decoration in examples of recursive cycleTom Lane
2008-10-13Implement comparison of generic records (composite types), and invent aTom Lane