We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
func (c *Connection) Query(query string) (RowSet, error) { bquery := beeswax.Query{}
bquery.Query = query bquery.Configuration = []string{} handle, err := c.client.Query(&bquery) if err != nil { return nil, err } **c.handle = handle** return newRowSet(c.client, handle, c.options), nil
}
*func (c Connection) CloseQuery() error { if c.handle != nil { c.client.CloseInsert(c.handle) c.handle = nil } return nil }
The text was updated successfully, but these errors were encountered:
At the moment I do not have access to an Impala server to do any testing. In principle, this looks good, feel free to submit a pull request.
Sorry, something went wrong.
No branches or pull requests
connection.go
func (c *Connection) Query(query string) (RowSet, error) {
bquery := beeswax.Query{}
}
*func (c Connection) CloseQuery() error {
if c.handle != nil {
c.client.CloseInsert(c.handle)
c.handle = nil
}
return nil
}
The text was updated successfully, but these errors were encountered: