ClickHouse/tests/integration/test_startup_scripts/test.py

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

22 lines
469 B
Python
Raw Normal View History

2024-06-06 05:42:07 +00:00
from helpers.cluster import ClickHouseCluster
def test_startup_scripts():
cluster = ClickHouseCluster(__file__)
node = cluster.add_instance(
"node",
2024-06-21 16:10:49 +00:00
main_configs=[
"configs/config.d/query_log.xml",
"configs/config.d/startup_scripts.xml",
],
2024-06-06 05:42:07 +00:00
with_zookeeper=False,
)
try:
cluster.start()
assert node.query("SHOW TABLES") == "TestTable\n"
finally:
cluster.shutdown()