mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 21:24:28 +00:00
23 lines
387 B
Bash
23 lines
387 B
Bash
|
#!/usr/bin/expect -f
|
||
|
|
||
|
log_user 0
|
||
|
set timeout 5
|
||
|
match_max 100000
|
||
|
|
||
|
if ![info exists env(CLICKHOUSE_PORT_TCP)] {set env(CLICKHOUSE_PORT_TCP) 9000}
|
||
|
|
||
|
spawn clickhouse-client --port "$env(CLICKHOUSE_PORT_TCP)"
|
||
|
expect ":) "
|
||
|
|
||
|
# Make a query
|
||
|
send -- "SELECT 'print query id'\r"
|
||
|
expect {
|
||
|
"Query id: *" { }
|
||
|
timeout { exit 1 }
|
||
|
}
|
||
|
expect "print query id"
|
||
|
expect ":) "
|
||
|
|
||
|
send -- "\4"
|
||
|
expect eof
|