From cd9a71b19cc3c4e6257c0d415623d7c4102f4b3a Mon Sep 17 00:00:00 2001 From: alesapin Date: Fri, 3 Jul 2020 16:01:02 +0300 Subject: [PATCH] Update clickhouse-test --- tests/clickhouse-test | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/clickhouse-test b/tests/clickhouse-test index 64ca3031fb6..fc3cfb0b432 100755 --- a/tests/clickhouse-test +++ b/tests/clickhouse-test @@ -422,7 +422,7 @@ def collect_build_flags(client): (stdout, stderr) = clickhouse_proc.communicate("SELECT value FROM system.build_options WHERE name = 'UNBUNDLED'") if clickhouse_proc.returncode == 0: - if 'ON' in stdout: + if 'ON' in stdout or '1' in stdout: result.append(BuildFlags.UNBUNDLED) else: raise Exception("Cannot get inforamtion about build from server errorcode {}, stderr {}".format(clickhouse_proc.returncode, stderr))