Skip to content

Commit bc70728

Browse files
committed
Fix regression test failure caused by commit 4f0b096
The query originally used was too simple, cause explain_filter() to be unable to remove JIT output text. Reported-by: Tom Lane Author: Julien Rouhaud
1 parent c7578fa commit bc70728

File tree

2 files changed

+6
-6
lines changed

2 files changed

+6
-6
lines changed

src/test/regress/expected/explain.out

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -478,11 +478,11 @@ select jsonb_pretty(
478478

479479
rollback;
480480
set compute_query_id = on;
481-
select explain_filter('explain (verbose) select 1');
482-
explain_filter
483-
----------------------------------------
484-
Result (cost=N.N..N.N rows=N width=N)
485-
Output: N
481+
select explain_filter('explain (verbose) select * from int8_tbl i8');
482+
explain_filter
483+
----------------------------------------------------------------
484+
Seq Scan on public.int8_tbl i8 (cost=N.N..N.N rows=N width=N)
485+
Output: q1, q2
486486
Query Identifier: N
487487
(3 rows)
488488

src/test/regress/sql/explain.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -105,4 +105,4 @@ select jsonb_pretty(
105105
rollback;
106106

107107
set compute_query_id = on;
108-
select explain_filter('explain (verbose) select 1');
108+
select explain_filter('explain (verbose) select * from int8_tbl i8');

0 commit comments

Comments
 (0)
pFad - Phonifier reborn

Pfad - The Proxy pFad of © 2024 Garber Painting. All rights reserved.

Note: This service is not intended for secure transactions such as banking, social media, email, or purchasing. Use at your own risk. We assume no liability whatsoever for broken pages.


Alternative Proxies:

Alternative Proxy

pFad Proxy

pFad v3 Proxy

pFad v4 Proxy