mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-22 23:52:03 +00:00
add more tests
This commit is contained in:
parent
d0f2014f13
commit
da186811f0
@ -28,6 +28,13 @@ def test_table_db_limit(started_cluster):
|
||||
node1.query("create database db_exp".format(i))
|
||||
|
||||
assert "TOO_MANY_DATABASES" in str(exp_info)
|
||||
|
||||
for i in range(10):
|
||||
node1.query("create table t{} (a Int32) Engine = Log".format(i))
|
||||
|
||||
node1.query("system flush logs");
|
||||
for i in range(10):
|
||||
node1.query("drop table t{}".format(i))
|
||||
for i in range(10):
|
||||
node1.query("create table t{} (a Int32) Engine = Log".format(i))
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user