2021-10-29 12:04:08 +00:00
|
|
|
#!/usr/bin/expect -f
|
|
|
|
|
2022-07-02 09:05:52 +00:00
|
|
|
set basedir [file dirname $argv0]
|
|
|
|
set basename [file tail $argv0]
|
|
|
|
exp_internal -f $env(CLICKHOUSE_TMP)/$basename.debuglog 0
|
|
|
|
|
2021-10-29 12:04:08 +00:00
|
|
|
log_user 0
|
|
|
|
set timeout 20
|
|
|
|
match_max 100000
|
|
|
|
|
|
|
|
expect_after {
|
2021-12-28 18:16:04 +00:00
|
|
|
# Do not ignore eof from expect
|
2023-02-20 14:50:15 +00:00
|
|
|
-i $any_spawn_id eof { exp_continue }
|
2021-12-28 18:16:04 +00:00
|
|
|
# A default timeout action is to do nothing, change it to fail
|
2023-02-20 14:50:15 +00:00
|
|
|
-i $any_spawn_id timeout { exit 1 }
|
2021-10-29 12:04:08 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
spawn bash -c "source $basedir/../shell_config.sh ; \$CLICKHOUSE_LOCAL --disable_suggestion --interactive --query 'create table t(i Int32) engine=Memory; insert into t select 1'"
|
|
|
|
expect ":) "
|
|
|
|
|
|
|
|
send -- "select * from t format TSV\r"
|
|
|
|
expect "1"
|
|
|
|
expect ":) "
|
|
|
|
|
|
|
|
send -- "exit\r"
|
|
|
|
expect eof
|