Skip to content

Commit de65c4d

Browse files
committed
Fix oversights in commit 8d5ceb1
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.
1 parent 8d5ceb1 commit de65c4d

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

contrib/pg_overexplain/expected/pg_overexplain.out

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -341,7 +341,7 @@ $$);
341341
Parse Location: 0 to end
342342
(37 rows)
343343

344-
RESET debug_parallel_query;
344+
SET debug_parallel_query = false;
345345
RESET enable_seqscan;
346346
-- Test the DEBUG option with a non-SELECT query, and also verify that the
347347
-- hasReturning flag is shown.

contrib/pg_overexplain/sql/pg_overexplain.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ SELECT explain_filter($$
6767
EXPLAIN (DEBUG, COSTS OFF)
6868
SELECT genus, array_agg(name ORDER BY name) FROM vegetables GROUP BY genus
6969
$$);
70-
RESET debug_parallel_query;
70+
SET debug_parallel_query = false;
7171
RESET enable_seqscan;
7272

7373
-- Test the DEBUG option with a non-SELECT query, and also verify that the

doc/src/sgml/pgoverexplain.sgml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292

9393
<listitem>
9494
<para>
95-
<literal>Subplans Needing Rewind</literal>. Integer IDs of subplans that
95+
<literal>Subplans Needing Rewind</literal>. Integer IDs of subplans that
9696
may need to be rewound by the executor.
9797
</para>
9898
</listitem>

0 commit comments

Comments
 (0)