gohive
gohive copied to clipboard
A Go driver for Hive
sql support placeholder example: ``` db.Exec("insert into churn.test (gender) values (?)", []driver.Value{"Female"}) ``` At present, simple types are supported, and complex types (such as array map struct) will be supported...
As #60 ,I think can't setMatLength with batch size which config hive query return rows count with one fetch request。 batch size will set in hive session options := hiveOptions{PollIntervalSeconds:...
Hello, this is more of a question than an issue: Does this driver support username and password authentication over TLS/SSL? If so, how can we add the config for TLS/SSL?...
create DB failed: failed to ping database: Error in GetInfo: Required field 'sessionId' is unset! Struct:TSessionHandle(sessionId:null)
go test -v === RUN TestOpenConnection --- PASS: TestOpenConnection (0.00s) === RUN TestQuery --- FAIL: TestQuery (0.06s) panic: runtime error: invalid memory address or nil pointer dereference [recovered] panic: runtime...
I tried [the following SQL statements](https://github.com/sql-machine-learning/sqlflow/blob/1147883480de0bd9ddbbaeaa078a312a9e0eaa07/sql/testdata/iris_sql.go#L163-L174) ```SQL CREATE DATABASE IF NOT EXISTS iris; DROP TABLE IF EXISTS iris.train; CREATE TABLE iris.train ( sepal_length float, sepal_width float, petal_length float, petal_width float,...
Let `root:root` be the only valid user. To solve this issue, we need to 1. Enable authorization check on the server side 2. Handling wrong username/password error on the client...
A statement like `SELECT id, block FROM {table} ORDER BY id` causes an error