Fix whitespace error in parallel tests

This change fixes a whitespace error in the test reference files for
the `parallel` test in PostgreSQL 9.6 and 10.
This commit is contained in:
Erik Nordström 2020-02-24 12:01:31 +01:00 committed by Erik Nordström
parent e97216b36e
commit d2d5a484ce
2 changed files with 4 additions and 4 deletions

View File

@ -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
-----------

View File

@ -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
-----------