diff --git a/test/expected/parallel-10.out b/test/expected/parallel-10.out index f11f8c4da..459e5f055 100644 --- a/test/expected/parallel-10.out +++ b/test/expected/parallel-10.out @@ -198,7 +198,7 @@ SELECT histogram(i, 10, 100000, 5) FROM "test"; {1,2000,2000,2000,2000,1999,90000} (1 row) -EXPLAIN (costs off) SELECT histogram(NULL, 10,100000,5) FROM "test" WHERE i = coalesce(-1,j); +EXPLAIN (costs off) SELECT histogram(NULL, 10,100000,5) FROM "test" WHERE i = coalesce(-1,j); QUERY PLAN ------------------------------------------------------------------------------------ Finalize Aggregate @@ -212,7 +212,7 @@ EXPLAIN (costs off) SELECT histogram(NULL, 10,100000,5) FROM "test" WHERE i = c Filter: ((i)::double precision = '-1'::double precision) (9 rows) -SELECT histogram(NULL, 10,100000,5) FROM "test" WHERE i = coalesce(-1,j); +SELECT histogram(NULL, 10,100000,5) FROM "test" WHERE i = coalesce(-1,j); histogram ----------- diff --git a/test/expected/parallel-9.6.out b/test/expected/parallel-9.6.out index 6aae41e93..a5133849c 100644 --- a/test/expected/parallel-9.6.out +++ b/test/expected/parallel-9.6.out @@ -198,7 +198,7 @@ SELECT histogram(i, 10, 100000, 5) FROM "test"; {1,2000,2000,2000,2000,1999,90000} (1 row) -EXPLAIN (costs off) SELECT histogram(NULL, 10,100000,5) FROM "test" WHERE i = coalesce(-1,j); +EXPLAIN (costs off) SELECT histogram(NULL, 10,100000,5) FROM "test" WHERE i = coalesce(-1,j); QUERY PLAN ------------------------------------------------------------------------------------ Finalize Aggregate @@ -212,7 +212,7 @@ EXPLAIN (costs off) SELECT histogram(NULL, 10,100000,5) FROM "test" WHERE i = c Filter: ((i)::double precision = '-1'::double precision) (9 rows) -SELECT histogram(NULL, 10,100000,5) FROM "test" WHERE i = coalesce(-1,j); +SELECT histogram(NULL, 10,100000,5) FROM "test" WHERE i = coalesce(-1,j); histogram -----------