Merge pull request #13108 from vzakaznikov/fixing_test_00960_live_view_watch_events_live

Fixing 00960_live_view_watch_events_live.py test
This commit is contained in:
alexey-milovidov 2020-07-31 01:29:47 +03:00 committed by GitHub
commit 6e0c907aef
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -30,6 +30,7 @@ with client(name='client1>', log=log) as client1, client(name='client2>', log=lo
client1.send('CREATE LIVE VIEW test.lv AS SELECT sum(a) FROM test.mt')
client1.expect(prompt)
client1.send('WATCH test.lv EVENTS')
client1.expect('version')
client1.expect('1.*' + end_of_block)
client2.send('INSERT INTO test.mt VALUES (1),(2),(3)')
client1.expect('2.*' + end_of_block)