diff --git a/src/test/regress/expected/pg16.out b/src/test/regress/expected/pg16.out index a65b18ee011..304d7563559 100644 --- a/src/test/regress/expected/pg16.out +++ b/src/test/regress/expected/pg16.out @@ -148,7 +148,7 @@ FROM (16 rows) -- pull the data, and run IS JSON predicate in the coordinator -WITH pulled_data as (SELECT js FROM test_is_json) +WITH pulled_data as (SELECT js FROM test_is_json OFFSET 0) SELECT js, js IS JSON "IS JSON", diff --git a/src/test/regress/sql/pg16.sql b/src/test/regress/sql/pg16.sql index 850672fde2d..abf29d9329b 100644 --- a/src/test/regress/sql/pg16.sql +++ b/src/test/regress/sql/pg16.sql @@ -100,7 +100,7 @@ FROM test_is_json ORDER BY js; -- pull the data, and run IS JSON predicate in the coordinator -WITH pulled_data as (SELECT js FROM test_is_json) +WITH pulled_data as (SELECT js FROM test_is_json OFFSET 0) SELECT js, js IS JSON "IS JSON",