mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-24 08:32:02 +00:00
7 lines
268 B
Bash
Executable File
7 lines
268 B
Bash
Executable File
#!/bin/bash
|
|
|
|
clickhouse-client -q "SELECT * from system.build_options;"
|
|
|
|
# --no-shard because default server listen only :: and 127.0.0.1
|
|
[ -n "$TEST_RUN" ] && clickhouse-test --no-shard --queries /usr/share/clickhouse-test/queries --tmp /tmp/clickhouse-test/ || true
|