File tree Expand file tree Collapse file tree 4 files changed +0
-6
lines changed Expand file tree Collapse file tree 4 files changed +0
-6
lines changed Original file line number Diff line number Diff line change @@ -2717,8 +2717,6 @@ select ts_headline('[]'::json, tsquery('aaa & bbb'));
2717
2717
(1 row)
2718
2718
2719
2719
-- simple dot notation
2720
- drop table if exists test_json_dot;
2721
- NOTICE: table "test_json_dot" does not exist, skipping
2722
2720
create table test_json_dot(id int, test_json json);
2723
2721
insert into test_json_dot select 1, '{"a": 1, "b": 42}'::json;
2724
2722
insert into test_json_dot select 1, '{"a": 2, "b": {"c": 42}}'::json;
Original file line number Diff line number Diff line change @@ -5716,8 +5716,6 @@ select '12345.0000000000000000000000000000000000000000000005'::jsonb::int8;
5716
5716
(1 row)
5717
5717
5718
5718
-- simple dot notation
5719
- drop table if exists test_jsonb_dot;
5720
- NOTICE: table "test_jsonb_dot" does not exist, skipping
5721
5719
create table test_jsonb_dot(id int, test_jsonb jsonb);
5722
5720
insert into test_jsonb_dot select 1, '{"a": 1, "b": 42}'::json;
5723
5721
insert into test_jsonb_dot select 1, '{"a": 2, "b": {"c": 42}}'::json;
Original file line number Diff line number Diff line change @@ -871,7 +871,6 @@ select ts_headline('{}'::json, tsquery('aaa & bbb'));
871
871
select ts_headline(' []' ::json, tsquery(' aaa & bbb' ));
872
872
873
873
-- simple dot notation
874
- drop table if exists test_json_dot;
875
874
create table test_json_dot (id int , test_json json);
876
875
insert into test_json_dot select 1 , ' {"a": 1, "b": 42}' ::json;
877
876
insert into test_json_dot select 1 , ' {"a": 2, "b": {"c": 42}}' ::json;
Original file line number Diff line number Diff line change @@ -1561,7 +1561,6 @@ select '12345.0000000000000000000000000000000000000000000005'::jsonb::int4;
1561
1561
select ' 12345.0000000000000000000000000000000000000000000005' ::jsonb::int8;
1562
1562
1563
1563
-- simple dot notation
1564
- drop table if exists test_jsonb_dot;
1565
1564
create table test_jsonb_dot (id int , test_jsonb jsonb);
1566
1565
insert into test_jsonb_dot select 1 , ' {"a": 1, "b": 42}' ::json;
1567
1566
insert into test_jsonb_dot select 1 , ' {"a": 2, "b": {"c": 42}}' ::json;
You can’t perform that action at this time.
0 commit comments