Skip to content

Commit

Permalink
Address review
Browse files Browse the repository at this point in the history
  • Loading branch information
naisila committed Aug 23, 2023
1 parent a6f39b0 commit 8b3d331
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/test/regress/expected/pg16.out
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down
2 changes: 1 addition & 1 deletion src/test/regress/sql/pg16.sql
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down

0 comments on commit 8b3d331

Please sign in to comment.