2021-02-01 12:40:57 +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
|
2023-02-20 12:55:42 +00:00
|
|
|
set history_file $env(CLICKHOUSE_TMP)/$basename.history
|
2022-07-02 09:05:52 +00:00
|
|
|
|
2021-02-01 12:40:57 +00:00
|
|
|
log_user 0
|
2021-06-16 06:01:57 +00:00
|
|
|
set timeout 60
|
2021-02-01 12:40:57 +00:00
|
|
|
match_max 100000
|
|
|
|
expect_after {
|
2021-12-28 18:16:04 +00:00
|
|
|
# Do not ignore eof from expect
|
2023-02-20 18:27:09 +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 18:27:09 +00:00
|
|
|
-i $any_spawn_id timeout { exit 1 }
|
2021-02-01 12:40:57 +00:00
|
|
|
}
|
|
|
|
|
2023-02-20 12:55:42 +00:00
|
|
|
spawn bash -c "source $basedir/../shell_config.sh ; \$CLICKHOUSE_CLIENT_BINARY \$CLICKHOUSE_CLIENT_OPT --disable_suggestion --history_file=$history_file"
|
2021-02-01 12:40:57 +00:00
|
|
|
expect ":) "
|
|
|
|
|
|
|
|
send -- "DROP TABLE IF EXISTS test_01179\r"
|
|
|
|
expect "Ok."
|
|
|
|
|
2023-02-20 15:37:59 +00:00
|
|
|
send -- "CREATE TABLE test_01179 (date DateTime64(3)) ENGINE=Memory()\r"
|
2021-02-01 12:40:57 +00:00
|
|
|
expect "Ok."
|
|
|
|
|
|
|
|
send -- "INSERT INTO test_01179 values ('2020-01-01')\r"
|
|
|
|
expect "Ok."
|
|
|
|
|
|
|
|
send -- "INSERT INTO test_01179 values ('2020-01-01'); \r"
|
|
|
|
expect "Ok."
|
|
|
|
|
2023-02-20 15:37:59 +00:00
|
|
|
send -- "INSERT INTO test_01179 values ('2020-01-01 0'); (1) \r"
|
2021-02-01 12:40:57 +00:00
|
|
|
expect "Cannot read data after semicolon"
|
|
|
|
|
|
|
|
send -- "SELECT date, count() FROM test_01179 GROUP BY date FORMAT TSV\r"
|
2023-02-20 15:37:59 +00:00
|
|
|
expect "2020-01-01 00:00:00.000\t2"
|
2021-02-01 12:40:57 +00:00
|
|
|
|
|
|
|
send -- "DROP TABLE test_01179\r"
|
|
|
|
expect "Ok."
|
|
|
|
|
2023-02-24 14:38:53 +00:00
|
|
|
send -- "exit\r"
|
2021-02-01 12:40:57 +00:00
|
|
|
expect eof
|