Skip to content

Commit 0092a0b

Browse files
committed
[test] Address feedback: remove unnecessary drop table
1 parent 9bf9dcf commit 0092a0b

File tree

4 files changed

+0
-6
lines changed

4 files changed

+0
-6
lines changed

src/test/regress/expected/json.out

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2717,8 +2717,6 @@ select ts_headline('[]'::json, tsquery('aaa & bbb'));
27172717
(1 row)
27182718

27192719
-- simple dot notation
2720-
drop table if exists test_json_dot;
2721-
NOTICE: table "test_json_dot" does not exist, skipping
27222720
create table test_json_dot(id int, test_json json);
27232721
insert into test_json_dot select 1, '{"a": 1, "b": 42}'::json;
27242722
insert into test_json_dot select 1, '{"a": 2, "b": {"c": 42}}'::json;

src/test/regress/expected/jsonb.out

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5716,8 +5716,6 @@ select '12345.0000000000000000000000000000000000000000000005'::jsonb::int8;
57165716
(1 row)
57175717

57185718
-- simple dot notation
5719-
drop table if exists test_jsonb_dot;
5720-
NOTICE: table "test_jsonb_dot" does not exist, skipping
57215719
create table test_jsonb_dot(id int, test_jsonb jsonb);
57225720
insert into test_jsonb_dot select 1, '{"a": 1, "b": 42}'::json;
57235721
insert into test_jsonb_dot select 1, '{"a": 2, "b": {"c": 42}}'::json;

src/test/regress/sql/json.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -871,7 +871,6 @@ select ts_headline('{}'::json, tsquery('aaa & bbb'));
871871
select ts_headline('[]'::json, tsquery('aaa & bbb'));
872872

873873
-- simple dot notation
874-
drop table if exists test_json_dot;
875874
create table test_json_dot(id int, test_json json);
876875
insert into test_json_dot select 1, '{"a": 1, "b": 42}'::json;
877876
insert into test_json_dot select 1, '{"a": 2, "b": {"c": 42}}'::json;

src/test/regress/sql/jsonb.sql

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1561,7 +1561,6 @@ select '12345.0000000000000000000000000000000000000000000005'::jsonb::int4;
15611561
select '12345.0000000000000000000000000000000000000000000005'::jsonb::int8;
15621562

15631563
-- simple dot notation
1564-
drop table if exists test_jsonb_dot;
15651564
create table test_jsonb_dot(id int, test_jsonb jsonb);
15661565
insert into test_jsonb_dot select 1, '{"a": 1, "b": 42}'::json;
15671566
insert into test_jsonb_dot select 1, '{"a": 2, "b": {"c": 42}}'::json;

0 commit comments

Comments
 (0)