2023-08-23 07:47:28 +00:00
|
|
|
import pytest
|
|
|
|
import os
|
|
|
|
from helpers.cluster import ClickHouseCluster
|
|
|
|
|
2023-08-24 14:23:46 +00:00
|
|
|
|
2023-08-23 07:47:28 +00:00
|
|
|
cluster = ClickHouseCluster(__file__)
|
2023-08-24 14:23:46 +00:00
|
|
|
node = cluster.add_instance(
|
|
|
|
"node", main_configs=["configs/config.xml"], user_configs=["configs/users.xml"]
|
|
|
|
)
|
2023-08-23 07:47:28 +00:00
|
|
|
|
|
|
|
|
|
|
|
@pytest.fixture(scope="module")
|
|
|
|
def started_cluster():
|
|
|
|
try:
|
|
|
|
cluster.start()
|
|
|
|
yield cluster
|
|
|
|
|
|
|
|
finally:
|
|
|
|
cluster.shutdown()
|
|
|
|
|
|
|
|
|
2023-08-28 12:51:17 +00:00
|
|
|
def test_hide_in_preprocessed(started_cluster):
|
2023-08-23 07:47:28 +00:00
|
|
|
assert (
|
|
|
|
node.query(
|
|
|
|
"select value from system.server_settings where name ='max_table_size_to_drop'"
|
|
|
|
)
|
|
|
|
== "60000000000\n"
|
|
|
|
)
|
2023-08-24 14:23:46 +00:00
|
|
|
assert (
|
|
|
|
node.query(
|
|
|
|
"select value from system.server_settings where name ='max_partition_size_to_drop'"
|
|
|
|
)
|
|
|
|
== "40000000000\n"
|
|
|
|
)
|
|
|
|
assert "key_1" in node.query("select collection from system.named_collections")
|
|
|
|
out = node.exec_in_container(
|
|
|
|
["cat", "/var/lib/clickhouse/preprocessed_configs/config.xml"]
|
|
|
|
)
|
|
|
|
assert "max_table_size_to_drop" not in out
|
|
|
|
assert "max_partition_size_to_drop" in out
|
|
|
|
assert "named_collections" not in out
|