diff options
author | Robert Haas | 2025-03-26 18:22:45 +0000 |
---|---|---|
committer | Robert Haas | 2025-03-26 18:22:45 +0000 |
commit | de65c4dade0a36026f3d0745dc8134186dab49cf (patch) | |
tree | 9b5eab1fa54852b5892a378c8daa0f5b9fe46fbf /contrib | |
parent | 8d5ceb113e3f7ddb627bd40b26438a9d2fa05512 (diff) |
Fix oversights in commit 8d5ceb113e3f7ddb627bd40b26438a9d2fa05512
It added bogus whitespace at the end of a line in the documentation.
It should not have done that.
The pg_overexplain tests must SET debug_parallel_query = false,
not just RESET debug_parallel_query, or we get failures on test
machines that make debug_parallel_query = true the defualt.
Diffstat (limited to 'contrib')
-rw-r--r-- | contrib/pg_overexplain/expected/pg_overexplain.out | 2 | ||||
-rw-r--r-- | contrib/pg_overexplain/sql/pg_overexplain.sql | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/contrib/pg_overexplain/expected/pg_overexplain.out b/contrib/pg_overexplain/expected/pg_overexplain.out index 122f1e5da73..f179473d910 100644 --- a/contrib/pg_overexplain/expected/pg_overexplain.out +++ b/contrib/pg_overexplain/expected/pg_overexplain.out @@ -341,7 +341,7 @@ $$); Parse Location: 0 to end (37 rows) -RESET debug_parallel_query; +SET debug_parallel_query = false; RESET enable_seqscan; -- Test the DEBUG option with a non-SELECT query, and also verify that the -- hasReturning flag is shown. diff --git a/contrib/pg_overexplain/sql/pg_overexplain.sql b/contrib/pg_overexplain/sql/pg_overexplain.sql index ae9082b1e85..a9634e443a0 100644 --- a/contrib/pg_overexplain/sql/pg_overexplain.sql +++ b/contrib/pg_overexplain/sql/pg_overexplain.sql @@ -67,7 +67,7 @@ SELECT explain_filter($$ EXPLAIN (DEBUG, COSTS OFF) SELECT genus, array_agg(name ORDER BY name) FROM vegetables GROUP BY genus $$); -RESET debug_parallel_query; +SET debug_parallel_query = false; RESET enable_seqscan; -- Test the DEBUG option with a non-SELECT query, and also verify that the |