mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-10 01:25:21 +00:00
Remove trash
This commit is contained in:
parent
1881c67eff
commit
e40a13bd1f
@ -63,13 +63,3 @@ def test_table_valid_column_family_options(start_cluster):
|
|||||||
CREATE TABLE test (key UInt64, value String) Engine=EmbeddedRocksDB PRIMARY KEY(key);
|
CREATE TABLE test (key UInt64, value String) Engine=EmbeddedRocksDB PRIMARY KEY(key);
|
||||||
DROP TABLE test;
|
DROP TABLE test;
|
||||||
""")
|
""")
|
||||||
|
|
||||||
def test_table_invalid_column_family_options(start_cluster):
|
|
||||||
node.exec_in_container(['bash', '-c', "sed -i 's/max_bytes_for_level_base/no_such_table_column_family_option/g' /etc/clickhouse-server/config.d/rocksdb.xml"])
|
|
||||||
node.restart_clickhouse()
|
|
||||||
with pytest.raises(QueryRuntimeException):
|
|
||||||
node.query("""
|
|
||||||
CREATE TABLE test (key UInt64, value String) Engine=EmbeddedRocksDB PRIMARY KEY(key);
|
|
||||||
""")
|
|
||||||
node.exec_in_container(['bash', '-c', "sed -i 's/no_such_table_column_family_option/max_bytes_for_level_base/g' /etc/clickhouse-server/config.d/rocksdb.xml"])
|
|
||||||
node.restart_clickhouse()
|
|
||||||
|
Loading…
Reference in New Issue
Block a user