Fix oversights in commit 8d5ceb113e3f7ddb627bd40b26438a9d2fa05512
authorRobert Haas <[email protected]>
Wed, 26 Mar 2025 18:22:45 +0000 (14:22 -0400)
committerRobert Haas <[email protected]>
Wed, 26 Mar 2025 18:22:45 +0000 (14:22 -0400)
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.

contrib/pg_overexplain/expected/pg_overexplain.out
contrib/pg_overexplain/sql/pg_overexplain.sql
doc/src/sgml/pgoverexplain.sgml

index 122f1e5da73af9e640dc41bb6a2f1cd0b6391cad..f179473d9100b7ef5e60244831651c18913c73d4 100644 (file)
@@ -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.
index ae9082b1e85962b9f2c50cd733327cbc4925f71f..a9634e443a0d9bd835d56b89d891844ca5128df6 100644 (file)
@@ -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
index 102bd275aed07929e8c253260f12581a73d05e43..21930fbd3bd76ea48143662a3971672c59c2de32 100644 (file)
@@ -92,7 +92,7 @@
 
    <listitem>
     <para>
-     <literal>Subplans Needing Rewind</literal>. Integer IDs of subplans that 
+     <literal>Subplans Needing Rewind</literal>. Integer IDs of subplans that
      may need to be rewound by the executor.
     </para>
    </listitem>