mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-17 21:24:28 +00:00
25 lines
510 B
Plaintext
Executable File
25 lines
510 B
Plaintext
Executable File
#!/usr/bin/expect -f
|
|
# Tags: no-unbundled, no-fasttest
|
|
|
|
log_user 0
|
|
set timeout 20
|
|
match_max 100000
|
|
|
|
# A default timeout action is to fail
|
|
expect_after {
|
|
timeout {
|
|
exit 1
|
|
}
|
|
}
|
|
|
|
set basedir [file dirname $argv0]
|
|
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
|