mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-05 15:21:43 +00:00
18 lines
196 B
Tcl
18 lines
196 B
Tcl
#!/usr/bin/env bash
|
|
#!/bin/expect
|
|
|
|
# Set timeout
|
|
set timeout 600
|
|
|
|
# Get arguments
|
|
set query [lindex $argv 0]
|
|
|
|
spawn hive
|
|
|
|
expect "hive>"
|
|
send "$query;\r"
|
|
|
|
expect "hive>"
|
|
send "quit;\r"
|
|
|
|
expect eof |