mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
8 lines
353 B
Bash
Executable File
8 lines
353 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
( curl -s --head "${CLICKHOUSE_URL:=http://localhost:8123/}?query=SELECT%201";
|
|
curl -s --head "${CLICKHOUSE_URL:=http://localhost:8123/}?query=select+*+from+system.numbers+limit+1000000" ) | grep -v "Date:"
|
|
|
|
curl -sS -X POST "http://127.0.0.1:8123?query=SELECT+1"
|
|
curl -sS -X POST "http://127.0.0.1:8123?query=SELECT+1" --data ''
|