mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-27 10:02:01 +00:00
21 lines
309 B
Tcl
21 lines
309 B
Tcl
#!/bin/bash
|
|
#!/bin/expect
|
|
|
|
# Set timeout
|
|
set timeout 600
|
|
|
|
# Get arguments
|
|
set query [lindex $argv 0]
|
|
|
|
spawn /usr/local/Calpont/mysql/bin/mysql --defaults-file=/usr/local/Calpont/mysql/my.cnf -u root
|
|
|
|
expect "mysql>"
|
|
send "use hits\r"
|
|
|
|
expect "mysql>"
|
|
send "$query\r"
|
|
|
|
expect "mysql>"
|
|
send "quit\r"
|
|
|
|
expect eof |