Update some tests

This commit is contained in:
Dmitry Novik 2024-03-21 15:00:27 +01:00
parent 1524d5a451
commit 188bc3cbaf
3 changed files with 5 additions and 5 deletions

View File

@ -9,7 +9,7 @@ node = cluster.add_instance(
stay_alive=True,
with_zookeeper=True,
with_installed_binary=True,
allow_analyzer=False,
use_old_analyzer=True,
)

View File

@ -3,7 +3,7 @@ import pytest
from helpers.cluster import ClickHouseCluster, CLICKHOUSE_CI_MIN_TESTED_VERSION
cluster = ClickHouseCluster(__file__)
node1 = cluster.add_instance("node1", with_zookeeper=False, allow_analyzer=False)
node1 = cluster.add_instance("node1", with_zookeeper=False, use_old_analyzer=True)
node2 = cluster.add_instance(
"node2",
with_zookeeper=False,
@ -11,7 +11,7 @@ node2 = cluster.add_instance(
tag=CLICKHOUSE_CI_MIN_TESTED_VERSION,
stay_alive=True,
with_installed_binary=True,
allow_analyzer=False,
use_old_analyzer=True,
)

View File

@ -9,13 +9,13 @@ from helpers.cluster import ClickHouseCluster, CLICKHOUSE_CI_MIN_TESTED_VERSION
from helpers.client import QueryRuntimeException
cluster = ClickHouseCluster(__file__)
upstream = cluster.add_instance("upstream", allow_analyzer=False)
upstream = cluster.add_instance("upstream", use_old_analyzer=True)
backward = cluster.add_instance(
"backward",
image="clickhouse/clickhouse-server",
tag=CLICKHOUSE_CI_MIN_TESTED_VERSION,
with_installed_binary=True,
allow_analyzer=False,
use_old_analyzer=True,
)