@@ -33,7 +33,8 @@ def test_ptrack_cluster_on_btree(self):
3333 # Create table and indexes
3434 node .safe_psql (
3535 "postgres" ,
36- "create sequence t_seq; create table t_heap tablespace somedata "
36+ "create extension bloom; create sequence t_seq; "
37+ "create table t_heap tablespace somedata "
3738 "as select i as id, nextval('t_seq') as t_seq, "
3839 "md5(i::text) as text, md5(repeat(i::text,10))::tsvector "
3940 "as tsvector from generate_series(0,2560) i" )
@@ -111,7 +112,8 @@ def test_ptrack_cluster_on_gist(self):
111112 # Create table and indexes
112113 node .safe_psql (
113114 "postgres" ,
114- "create sequence t_seq; create table t_heap as select i as id, "
115+ "create extension bloom; create sequence t_seq; "
116+ "create table t_heap as select i as id, "
115117 "nextval('t_seq') as t_seq, md5(i::text) as text, "
116118 "md5(repeat(i::text,10))::tsvector as tsvector "
117119 "from generate_series(0,2560) i" )
@@ -201,7 +203,8 @@ def test_ptrack_cluster_on_btree_replica(self):
201203 # Create table and indexes
202204 master .safe_psql (
203205 "postgres" ,
204- "create sequence t_seq; create table t_heap as select i as id, "
206+ "create extension bloom; create sequence t_seq; "
207+ "create table t_heap as select i as id, "
205208 "nextval('t_seq') as t_seq, md5(i::text) as text, "
206209 "md5(repeat(i::text,10))::tsvector as tsvector "
207210 "from generate_series(0,2560) i" )
@@ -300,7 +303,8 @@ def test_ptrack_cluster_on_gist_replica(self):
300303 # Create table and indexes
301304 master .safe_psql (
302305 "postgres" ,
303- "create sequence t_seq; create table t_heap as select i as id, "
306+ "create extension bloom; create sequence t_seq; "
307+ "create table t_heap as select i as id, "
304308 "nextval('t_seq') as t_seq, md5(i::text) as text, "
305309 "md5(repeat(i::text,10))::tsvector as tsvector "
306310 "from generate_series(0,2560) i" )
0 commit comments