mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
11 lines
635 B
Bash
11 lines
635 B
Bash
|
#!/bin/bash
|
||
|
|
||
|
curl -sS 'http://localhost:8123/' -d 'SELECT a' | wc -l
|
||
|
curl -sS 'http://localhost:8123/?stacktrace=0' -d 'SELECT a' | wc -l
|
||
|
[[ $(curl -sS 'http://localhost:8123/?stacktrace=1' -d 'SELECT a' | wc -l) -gt 3 ]] && echo 'Ok' || echo 'Fail'
|
||
|
curl -sS 'http://localhost:8123/' -d "SELECT intDiv(number, 0) FROM remote('127.0.0.{1,2}', system.numbers)" | wc -l
|
||
|
|
||
|
clickhouse-client --query="SELECT a" 2>&1 | wc -l
|
||
|
[[ $(clickhouse-client --query="SELECT a" --stacktrace 2>&1 | wc -l) -gt 3 ]] && echo 'Ok' || echo 'Fail'
|
||
|
clickhouse-client --query="SELECT intDiv(number, 0) FROM remote('127.0.0.{1,2}', system.numbers)" 2>&1 | wc -l
|