@@ -37,7 +37,6 @@ function defineTests(factory: storage.TestStorageFactory) {
3737 await pool . query ( `INSERT INTO test_data(id, description) VALUES('t1', 'test1')` ) ;
3838
3939 await context . replicateSnapshot ( ) ;
40- context . startStreaming ( ) ;
4140
4241 await pool . query ( `INSERT INTO test_data(id, description) VALUES('t2', 'test2')` ) ;
4342
@@ -68,7 +67,6 @@ function defineTests(factory: storage.TestStorageFactory) {
6867 const { pool } = context ;
6968
7069 await context . replicateSnapshot ( ) ;
71- context . startStreaming ( ) ;
7270
7371 await pool . query ( `CREATE TABLE test_data(id text primary key, description text)` ) ;
7472 await pool . query ( `INSERT INTO test_data(id, description) VALUES('t1', 'test1')` ) ;
@@ -103,7 +101,6 @@ function defineTests(factory: storage.TestStorageFactory) {
103101 await pool . query ( `INSERT INTO test_data_old(id, description) VALUES('t1', 'test1')` ) ;
104102
105103 await context . replicateSnapshot ( ) ;
106- context . startStreaming ( ) ;
107104
108105 await pool . query (
109106 { statement : `ALTER TABLE test_data_old RENAME TO test_data` } ,
@@ -143,7 +140,6 @@ function defineTests(factory: storage.TestStorageFactory) {
143140 await pool . query ( `INSERT INTO test_data1(id, description) VALUES('t1', 'test1')` ) ;
144141
145142 await context . replicateSnapshot ( ) ;
146- context . startStreaming ( ) ;
147143
148144 await pool . query (
149145 { statement : `ALTER TABLE test_data1 RENAME TO test_data2` } ,
@@ -186,7 +182,6 @@ function defineTests(factory: storage.TestStorageFactory) {
186182 await pool . query ( `INSERT INTO test_data(id, description) VALUES('t1', 'test1')` ) ;
187183
188184 await context . replicateSnapshot ( ) ;
189- context . startStreaming ( ) ;
190185
191186 await pool . query (
192187 { statement : `ALTER TABLE test_data RENAME TO test_data_na` } ,
@@ -216,7 +211,6 @@ function defineTests(factory: storage.TestStorageFactory) {
216211 await pool . query ( `INSERT INTO test_data(id, description) VALUES('t1', 'test1')` ) ;
217212
218213 await context . replicateSnapshot ( ) ;
219- context . startStreaming ( ) ;
220214
221215 await pool . query (
222216 { statement : `ALTER TABLE test_data REPLICA IDENTITY FULL` } ,
@@ -259,7 +253,6 @@ function defineTests(factory: storage.TestStorageFactory) {
259253 await pool . query ( `INSERT INTO test_data(id, description) VALUES('t1', 'test1')` ) ;
260254
261255 await context . replicateSnapshot ( ) ;
262- context . startStreaming ( ) ;
263256
264257 await pool . query (
265258 { statement : `ALTER TABLE test_data ADD COLUMN other TEXT` } ,
@@ -301,7 +294,6 @@ function defineTests(factory: storage.TestStorageFactory) {
301294 await pool . query ( `INSERT INTO test_data(id, description) VALUES('t1', 'test1')` ) ;
302295
303296 await context . replicateSnapshot ( ) ;
304- context . startStreaming ( ) ;
305297
306298 await pool . query (
307299 { statement : `ALTER TABLE test_data ALTER COLUMN id TYPE varchar` } ,
@@ -345,7 +337,6 @@ function defineTests(factory: storage.TestStorageFactory) {
345337 await pool . query ( `INSERT INTO test_data(id, description) VALUES('t1', 'test1')` ) ;
346338
347339 await context . replicateSnapshot ( ) ;
348- context . startStreaming ( ) ;
349340
350341 await pool . query ( `INSERT INTO test_data(id, description) VALUES('t2', 'test2')` ) ;
351342
@@ -396,7 +387,6 @@ function defineTests(factory: storage.TestStorageFactory) {
396387 await pool . query ( `INSERT INTO test_data(id, description) VALUES('t1', 'test1')` ) ;
397388
398389 await context . replicateSnapshot ( ) ;
399- context . startStreaming ( ) ;
400390
401391 await pool . query ( `INSERT INTO test_data(id, description) VALUES('t2', 'test2')` ) ;
402392
@@ -440,7 +430,6 @@ function defineTests(factory: storage.TestStorageFactory) {
440430 await pool . query ( `INSERT INTO test_other(id, description) VALUES('t1', 'test1')` ) ;
441431
442432 await context . replicateSnapshot ( ) ;
443- context . startStreaming ( ) ;
444433
445434 await pool . query ( `INSERT INTO test_other(id, description) VALUES('t2', 'test2')` ) ;
446435
@@ -468,7 +457,6 @@ function defineTests(factory: storage.TestStorageFactory) {
468457 await pool . query ( `INSERT INTO test_data(id, description) VALUES('t1', 'test1')` ) ;
469458
470459 await context . replicateSnapshot ( ) ;
471- context . startStreaming ( ) ;
472460
473461 await pool . query ( `INSERT INTO test_data(id, description) VALUES('t2', 'test2')` ) ;
474462
@@ -506,7 +494,6 @@ function defineTests(factory: storage.TestStorageFactory) {
506494 await pool . query ( `INSERT INTO test_data(id, description) VALUES('t1', 'test1')` ) ;
507495
508496 await context . replicateSnapshot ( ) ;
509- context . startStreaming ( ) ;
510497
511498 await pool . query ( `INSERT INTO test_data(id, description) VALUES('t2', 'test2')` ) ;
512499
@@ -555,7 +542,6 @@ function defineTests(factory: storage.TestStorageFactory) {
555542 await pool . query ( `INSERT INTO test_data_old(id, num) VALUES('t2', 0)` ) ;
556543
557544 await context . replicateSnapshot ( ) ;
558- context . startStreaming ( ) ;
559545
560546 await pool . query (
561547 { statement : `ALTER TABLE test_data_old RENAME TO test_data` } ,
@@ -627,7 +613,6 @@ config:
627613 await pool . query ( `INSERT INTO test_data(id) VALUES ('t1')` ) ;
628614
629615 await context . replicateSnapshot ( ) ;
630- context . startStreaming ( ) ;
631616
632617 await pool . query (
633618 { statement : `CREATE TYPE composite AS (foo bool, bar int4);` } ,
0 commit comments