Documentation ¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type RecordSet ¶
type RecordSet interface { // Fields gets result fields. Fields() []*ast.ResultField // Next reads records into chunk. Next(ctx context.Context, req *chunk.Chunk) error // NewChunk create a chunk. NewChunk() *chunk.Chunk // Close closes the underlying iterator, call Next after Close will // restart the iteration. Close() error }
RecordSet is an abstract result set interface to help get data from Plan.
Click to show internal directories.
Click to hide internal directories.