mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
28 lines
523 B
Plaintext
Executable File
28 lines
523 B
Plaintext
Executable File
#!/usr/bin/expect -f
|
|
|
|
log_user 0
|
|
set timeout 60
|
|
match_max 100000
|
|
# A default timeout action is to do nothing, change it to fail
|
|
expect_after {
|
|
timeout {
|
|
exit 1
|
|
}
|
|
}
|
|
|
|
set basedir [file dirname $argv0]
|
|
spawn bash -c "source $basedir/../shell_config.sh ; \$CLICKHOUSE_CLIENT_BINARY \$CLICKHOUSE_CLIENT_OPT --disable_suggestion"
|
|
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
|