ClickHouse/tests/queries/0_stateless/01520_client_print_query_id.sh
2020-10-11 10:09:08 +08:00

23 lines
387 B
Bash
Executable File

#!/usr/bin/expect -f
log_user 0
set timeout 5
match_max 100000
if ![info exists env(CLICKHOUSE_PORT_TCP)] {set env(CLICKHOUSE_PORT_TCP) 9000}
spawn clickhouse-client --port "$env(CLICKHOUSE_PORT_TCP)"
expect ":) "
# Make a query
send -- "SELECT 'print query id'\r"
expect {
"Query id: *" { }
timeout { exit 1 }
}
expect "print query id"
expect ":) "
send -- "\4"
expect eof