update test

This commit is contained in:
Nikita Mikhaylov 2021-03-26 18:39:44 +03:00
parent b3094412b1
commit b05b720935
2 changed files with 1 additions and 47 deletions

View File

@ -18,33 +18,7 @@
<port>9000</port>
</replica>
</shard>
</cluster_simple>
<cluster_with_dead_node>
<shard>
<internal_replication>true</internal_replication>
<replica>
<host>s0_0_0</host>
<port>9000</port>
</replica>
<replica>
<host>s0_0_1</host>
<port>9000</port>
</replica>
</shard>
<shard>
<internal_replication>true</internal_replication>
<replica>
<host>s0_1_0</host>
<port>9000</port>
</replica>
<replica>
<host>255.255.255.255</host>
<port>9000</port>
</replica>
</shard>
</cluster_with_dead_node>
</cluster_simple>s
</remote_servers>
</yandex>

View File

@ -57,26 +57,6 @@ def test_select_all(started_cluster):
assert TSV(pure_s3) == TSV(s3_distibuted)
def test_select_all_with_dead_replica(started_cluster):
node = started_cluster.instances['s0_0_0']
pure_s3 = node.query("""
SELECT * from s3(
'http://minio1:9001/root/data/{clickhouse,database}/*',
'minio', 'minio123', 'CSV',
'name String, value UInt32, polygon Array(Array(Tuple(Float64, Float64)))')
ORDER BY (name, value, polygon)""")
# print(pure_s3)
s3_distibuted = node.query("""
SELECT * from s3Distributed('cluster_simple',
'http://minio1:9001/root/data/{clickhouse,database}/*',
'minio', 'minio123', 'CSV',
'name String, value UInt32, polygon Array(Array(Tuple(Float64, Float64)))')
ORDER BY (name, value, polygon)""")
# print(s3_distibuted)
assert TSV(pure_s3) == TSV(s3_distibuted)
def test_count(started_cluster):
node = started_cluster.instances['s0_0_0']
pure_s3 = node.query("""