mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
20 lines
241 B
Tcl
20 lines
241 B
Tcl
|
#!/bin/bash
|
||
|
#!/bin/expect
|
||
|
|
||
|
# Set timeout
|
||
|
set timeout 600
|
||
|
|
||
|
# Get arguments
|
||
|
set query [lindex $argv 0]
|
||
|
|
||
|
spawn mclient -u monetdb -d hits
|
||
|
expect "password:"
|
||
|
send "monetdb\r"
|
||
|
|
||
|
expect "sql>"
|
||
|
send "$query\r"
|
||
|
|
||
|
expect "sql>"
|
||
|
send "\\q\r"
|
||
|
|
||
|
expect eof
|