mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-14 19:45:11 +00:00
18 lines
208 B
Tcl
18 lines
208 B
Tcl
|
#!/bin/bash
|
||
|
#!/bin/expect
|
||
|
|
||
|
# Set timeout
|
||
|
set timeout 600
|
||
|
|
||
|
# Get arguments
|
||
|
set query [lindex $argv 0]
|
||
|
|
||
|
spawn mysql-ib -u root -D hits
|
||
|
|
||
|
expect "mysql>"
|
||
|
send "$query\r"
|
||
|
|
||
|
expect "mysql>"
|
||
|
send "quit\r"
|
||
|
|
||
|
expect eof
|