Documentation
¶
Overview ¶
Package planner contains all the machinery to transform the semantic output into an actionable plan.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type Executor ¶ added in v0.5.0
type Executor interface {
// Execute runs the proposed plan for a given statement.
Execute(ctx context.Context) (*table.Table, error)
// String returns a readable description of the execution plan.
String() string
// Type returns the type of plan used by the executor.
Type() string
}
Executor interface unifies the execution of statements.
Click to show internal directories.
Click to hide internal directories.