Update test.py

This commit is contained in:
Kseniia Sumarokova 2022-07-13 17:55:24 +02:00 committed by GitHub
parent 83a09fd961
commit 765503cd61
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -263,6 +263,9 @@ def test_simple_insert_select(started_cluster):
simple_mongo_table = db["simple_table"]
node = started_cluster.instances["node"]
node.query(
"DROP TABLE IF EXISTS simple_mongo_table"
)
node.query(
"CREATE TABLE simple_mongo_table(key UInt64, data String) ENGINE = MongoDB('mongo1:27017', 'test', 'simple_table', 'root', 'clickhouse')"
)