mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-23 08:02:02 +00:00
Automatic style fix
This commit is contained in:
parent
462fe8b7ff
commit
5d9d5bf919
@ -60,17 +60,9 @@ def test_disk_is_immutable(started_cluster):
|
||||
node.query("INSERT INTO test_1 VALUES (1)")
|
||||
node.query("SYSTEM FLUSH LOGS;")
|
||||
|
||||
print(
|
||||
node.query(
|
||||
"SELECT 'test_1', * FROM system.blob_storage_log"
|
||||
)
|
||||
)
|
||||
print(node.query("SELECT 'test_1', * FROM system.blob_storage_log"))
|
||||
|
||||
print(
|
||||
node.query(
|
||||
"SELECT 'test_1', * FROM test_1"
|
||||
)
|
||||
)
|
||||
print(node.query("SELECT 'test_1', * FROM test_1"))
|
||||
|
||||
node.query("DROP TABLE test_1 SYNC")
|
||||
node.query("DROP TABLE IF EXISTS test_2")
|
||||
@ -92,28 +84,12 @@ def test_disk_is_immutable(started_cluster):
|
||||
node.query("INSERT INTO test_2 VALUES (1)")
|
||||
node.query("SYSTEM FLUSH LOGS;")
|
||||
|
||||
print(
|
||||
node.query(
|
||||
"SELECT 'test_2', * FROM system.blob_storage_log"
|
||||
)
|
||||
)
|
||||
print(node.query("SELECT 'test_2', * FROM system.blob_storage_log"))
|
||||
|
||||
print(
|
||||
node.query(
|
||||
"SELECT 'test_2', * FROM test_2"
|
||||
)
|
||||
)
|
||||
print(node.query("SELECT 'test_2', * FROM test_2"))
|
||||
|
||||
node.restart_clickhouse()
|
||||
|
||||
print(
|
||||
node.query(
|
||||
"SELECT 'test_2', * FROM system.blob_storage_log"
|
||||
)
|
||||
)
|
||||
print(node.query("SELECT 'test_2', * FROM system.blob_storage_log"))
|
||||
|
||||
print(
|
||||
node.query(
|
||||
"SELECT 'test_2', * FROM test_2"
|
||||
)
|
||||
)
|
||||
print(node.query("SELECT 'test_2', * FROM test_2"))
|
||||
|
Loading…
Reference in New Issue
Block a user