mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-13 11:04:10 +00:00
21 lines
323 B
Plaintext
Executable File
21 lines
323 B
Plaintext
Executable File
#!/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
|