mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-15 20:24:07 +00:00
21 lines
323 B
Plaintext
21 lines
323 B
Plaintext
|
#!/usr/bin/expect -f
|
||
|
|
||
|
log_user 0
|
||
|
set timeout 5
|
||
|
match_max 100000
|
||
|
|
||
|
spawn bash -c "$env(CLICKHOUSE_CLIENT_BINARY) $env(CLICKHOUSE_CLIENT_OPT)"
|
||
|
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
|