1
0
mirror of https://github.com/postgres/postgres.git synced 2025-07-27 12:41:57 +03:00

Fix oversights in commit 8d5ceb113e

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.
This commit is contained in:
Robert Haas
2025-03-26 14:22:45 -04:00
parent 8d5ceb113e
commit de65c4dade
3 changed files with 3 additions and 3 deletions

View File

@ -341,7 +341,7 @@ $$);
Parse Location: 0 to end Parse Location: 0 to end
(37 rows) (37 rows)
RESET debug_parallel_query; SET debug_parallel_query = false;
RESET enable_seqscan; RESET enable_seqscan;
-- Test the DEBUG option with a non-SELECT query, and also verify that the -- Test the DEBUG option with a non-SELECT query, and also verify that the
-- hasReturning flag is shown. -- hasReturning flag is shown.

View File

@ -67,7 +67,7 @@ SELECT explain_filter($$
EXPLAIN (DEBUG, COSTS OFF) EXPLAIN (DEBUG, COSTS OFF)
SELECT genus, array_agg(name ORDER BY name) FROM vegetables GROUP BY genus 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; RESET enable_seqscan;
-- Test the DEBUG option with a non-SELECT query, and also verify that the -- Test the DEBUG option with a non-SELECT query, and also verify that the