Skip to content

Commit dad793d

Browse files
[PGPRO-15514] Preemptively stabilize test outputs before PGPRO-11679 merge
1 parent e793024 commit dad793d

3 files changed

Lines changed: 22 additions & 715 deletions

File tree

expected/unsupported.out

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,19 @@ SET max_parallel_maintenance_workers = 1;
1010
SET max_parallel_workers_per_gather = 1;
1111
SET aqo.force_collect_stat = OFF;
1212
SET aqo.join_threshold = 0;
13+
-- Same as SET enable_extra_transformations = off, but supports vanilla
14+
-- Needed to alleviate plan changes in Ent due to subquery flattening
15+
SELECT count(*) >= 0 AS success
16+
FROM (
17+
SELECT set_config(name, 'off', false) FROM pg_settings
18+
WHERE name = 'enable_extra_transformations'
19+
OR name = 'enable_any_to_lateral_transformation'
20+
) tmp;
21+
success
22+
---------
23+
t
24+
(1 row)
25+
1326
-- Utility tool. Allow to filter system-dependent strings from an explain output.
1427
CREATE OR REPLACE FUNCTION expln(query_string text) RETURNS SETOF text AS $$
1528
BEGIN

0 commit comments

Comments
 (0)