ClickHouse/tests/integration/test_startup_scripts/test.py
2024-10-03 11:28:41 +00:00

28 lines
658 B
Python

from helpers.cluster import ClickHouseCluster
def test_startup_scripts():
cluster = ClickHouseCluster(__file__)
node = cluster.add_instance(
"node",
main_configs=[
"configs/config.d/query_log.xml",
"configs/config.d/startup_scripts.xml",
],
with_zookeeper=False,
)
try:
cluster.start()
assert node.query("SHOW TABLES") == "TestTable\n"
assert (
node.query(
"SELECT value, changed FROM system.settings WHERE name = 'skip_unavailable_shards'"
)
== "0\t0\n"
)
finally:
cluster.shutdown()