Update test.py

This commit is contained in:
Kseniia Sumarokova 2023-08-11 15:19:28 +02:00 committed by GitHub
parent e49519fb9d
commit 1ff4823f60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -64,7 +64,7 @@ def test_parallel_cache_loading_on_startup(cluster, node_name):
node.query("SELECT count() FROM system.filesystem_cache WHERE size > 0")
)
cache_state = node.query(
"SELECT key, offset, size FROM system.filesystem_cache ORDER BY key, offset, size WHERE size > 0"
"SELECT key, offset, size FROM system.filesystem_cache WHERE size > 0 ORDER BY key, offset, size"
)
node.restart_clickhouse()