mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-11 18:14:03 +00:00
11 lines
192 B
Plaintext
Executable File
11 lines
192 B
Plaintext
Executable File
#!/usr/bin/expect -f
|
|
|
|
log_user 1
|
|
set timeout 5
|
|
match_max 100000
|
|
|
|
spawn bash -c "$env(CLICKHOUSE_CLIENT_BINARY) --no-warnings $env(CLICKHOUSE_CLIENT_OPT)"
|
|
expect ":) "
|
|
send -- "q\r"
|
|
expect eof
|