diff options
-rw-r--r-- | contrib/pg_overexplain/expected/pg_overexplain.out | 2 | ||||
-rw-r--r-- | contrib/pg_overexplain/sql/pg_overexplain.sql | 2 | ||||
-rw-r--r-- | doc/src/sgml/pgoverexplain.sgml | 2 |
3 files changed, 3 insertions, 3 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 diff --git a/doc/src/sgml/pgoverexplain.sgml b/doc/src/sgml/pgoverexplain.sgml index 102bd275aed..21930fbd3bd 100644 --- a/doc/src/sgml/pgoverexplain.sgml +++ b/doc/src/sgml/pgoverexplain.sgml @@ -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> |