diff --git a/expected/hypo_brin.out b/expected/hypo_brin.out index a93465d..059b6f3 100644 --- a/expected/hypo_brin.out +++ b/expected/hypo_brin.out @@ -12,7 +12,7 @@ FROM public.hypopg_create_index('CREATE INDEX ON hypo_brin USING brin (id);'); -- Should use hypothetical index SET enable_seqscan = 0; SELECT COUNT(*) FROM do_explain('SELECT * FROM hypo_brin WHERE id = 1') e -WHERE e ~ 'Bitmap Index Scan on <\d+>brin_hypo_brin.*'; +WHERE e ~ 'Bitmap Index Scan.*<\d+>brin_hypo_brin.*'; count ------- 1 diff --git a/test/sql/hypo_brin.sql b/test/sql/hypo_brin.sql index 86d87fb..e5031bc 100644 --- a/test/sql/hypo_brin.sql +++ b/test/sql/hypo_brin.sql @@ -13,6 +13,6 @@ FROM public.hypopg_create_index('CREATE INDEX ON hypo_brin USING brin (id);'); -- Should use hypothetical index SET enable_seqscan = 0; SELECT COUNT(*) FROM do_explain('SELECT * FROM hypo_brin WHERE id = 1') e -WHERE e ~ 'Bitmap Index Scan on <\d+>brin_hypo_brin.*'; +WHERE e ~ 'Bitmap Index Scan.*<\d+>brin_hypo_brin.*'; DROP TABLE hypo_brin;