mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
27 lines
498 B
Plaintext
Executable File
27 lines
498 B
Plaintext
Executable File
#!/usr/bin/expect -f
|
|
|
|
log_user 0
|
|
set timeout 5
|
|
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 ; \$MYSQL_CLIENT_BINARY \$MYSQL_CLIENT_OPT"
|
|
expect "mysql> "
|
|
|
|
send -- "USE system;\r"
|
|
expect "Database changed"
|
|
|
|
send -- "SELECT * FROM one;\r"
|
|
expect "| dummy |"
|
|
expect "| 0 |"
|
|
expect "1 row in set"
|
|
|
|
send -- "quit;\r"
|
|
expect eof
|