Additional tests

This commit is contained in:
pufit 2023-02-18 13:45:33 -05:00
parent 4496db66b2
commit 5b10fafbb0
2 changed files with 20 additions and 0 deletions

View File

@ -58,5 +58,19 @@ def test_xml_full_conf():
== "64999\n"
)
assert (
node.query(
"select value from system.server_settings where name = 'max_connections'"
)
== "4096\n"
)
assert (
node.query(
"select changed from system.server_settings where name = 'max_connections'"
)
== "1\n"
)
finally:
cluster.shutdown()

View File

@ -64,6 +64,12 @@ def test_extra_yaml_mix():
)
== "64999\n"
)
assert (
node.query(
"select value from system.server_settings where name = 'mark_cache_size'"
)
== "8956\n"
)
finally:
cluster.shutdown()