Hive thrift client which implement database/sql
A hive driver for Go’s database/sql package
package main
import (
"database/sql"
_ "github.com/taozle/go-hive-driver"
)
func main() {
db, err := sql.Open("hive", "hive://user:password@host:port?auth=sasl&batch=500")
}