mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-06 15:42:39 +00:00
15 lines
383 B
XML
15 lines
383 B
XML
<test>
|
|
<settings>
|
|
<async_socket_for_remote>1</async_socket_for_remote>
|
|
</settings>
|
|
<query>
|
|
SELECT sum(x)
|
|
FROM
|
|
(
|
|
SELECT sipHash64(sipHash64(sipHash64(number))) AS x
|
|
FROM remote('127.0.0.{{2,3,4,5}}', numbers(10000000))
|
|
)
|
|
SETTINGS max_threads = 2, max_distributed_connections = 2
|
|
</query>
|
|
</test>
|