ClickHouse/benchmark/monetdb/send-query
2020-08-12 05:56:56 +03:00

20 lines
249 B
Plaintext
Executable File

#!/usr/bin/expect
# Set timeout
set timeout 600
# Get arguments
set query [lindex $argv 0]
spawn mclient -u monetdb -d test --timer=clock
expect "password:"
send "monetdb\r"
expect "sql>"
send "$query;\r"
expect "sql>"
send "\\q\r"
expect eof