This should make the buildfarm happier.
i int4[],
t text[]
);
+CREATE TABLE testjsonb (
+ j jsonb
+);
CREATE TABLE IF NOT EXISTS test_tsvector(
t text,
a tsvector
t
(1 row)
-CREATE TABLE testjsonb (j jsonb);
-\copy testjsonb FROM 'data/jsonb.data'
-- containment
SELECT jsonb_contains('{"a":"b", "b":1, "c":null}', '{"a":"b"}');
jsonb_contains
t
(1 row)
-CREATE TABLE testjsonb (j jsonb);
-\copy testjsonb FROM 'data/jsonb.data'
-- containment
SELECT jsonb_contains('{"a":"b", "b":1, "c":null}', '{"a":"b"}');
jsonb_contains
test_range_gist|t
test_range_spgist|t
test_tsvector|f
+testjsonb|f
text_tbl|f
time_tbl|f
timestamp_tbl|f
COPY test_tsvector FROM '@abs_srcdir@/data/tsearch.data';
+COPY testjsonb FROM '@abs_srcdir@/data/jsonb.data';
+
-- the data in this file has a lot of duplicates in the index key
-- fields, leading to long bucket chains and lots of table expansion.
-- this is therefore a stress test of the bucket overflow code (unlike
COPY hash_txt_heap FROM '@abs_srcdir@/data/hash.data';
COPY hash_f8_heap FROM '@abs_srcdir@/data/hash.data';
COPY test_tsvector FROM '@abs_srcdir@/data/tsearch.data';
+COPY testjsonb FROM '@abs_srcdir@/data/jsonb.data';
-- the data in this file has a lot of duplicates in the index key
-- fields, leading to long bucket chains and lots of table expansion.
-- this is therefore a stress test of the bucket overflow code (unlike
test_range_gist
test_range_spgist
test_tsvector
+ testjsonb
text_tbl
time_tbl
timestamp_tbl
tvvmv
varchar_tbl
xacttest
-(119 rows)
+(120 rows)
SELECT name(equipment(hobby_construct(text 'skywalking', text 'mer')));
name
t text[]
);
+CREATE TABLE testjsonb (
+ j jsonb
+);
+
CREATE TABLE IF NOT EXISTS test_tsvector(
t text,
a tsvector
SELECT '{"x":"y"}'::jsonb <> '{"x":"y"}'::jsonb;
SELECT '{"x":"y"}'::jsonb <> '{"x":"z"}'::jsonb;
-CREATE TABLE testjsonb (j jsonb);
-\copy testjsonb FROM 'data/jsonb.data'
-
-- containment
SELECT jsonb_contains('{"a":"b", "b":1, "c":null}', '{"a":"b"}');
SELECT jsonb_contains('{"a":"b", "b":1, "c":null}', '{"a":"b", "c":null}');