Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var (
DefaultOptions = Options{PollIntervalSeconds: 0.1, BatchSize: 1024, BufferSize: 4096}
)
Functions ¶
This section is empty.
Types ¶
type ColumnSchema ¶
type Connection ¶
type Connection struct {
// contains filtered or unexported fields
}
type RowSet ¶
type RowSet interface { Schema(ctx context.Context) []*ColumnSchema Next(ctx context.Context) bool Err() error Scan(dest ...interface{}) error Poll(ctx context.Context) (*Status, error) Wait(ctx context.Context) (*Status, error) FetchAll(ctx context.Context) []map[string]interface{} MapScan(dest map[string]interface{}) error }
A RowSet represents an asyncronous hive operation. You can Reattach to a previously submitted hive operation if you have a valid thrift client, and the serialized Handle() from the prior operation.
Click to show internal directories.
Click to hide internal directories.