Open implements the Executor Open interface.
(context.Context)
| 341 | |
| 342 | // Open implements the Executor Open interface. |
| 343 | func (e *SplitTableRegionExec) Open(context.Context) (err error) { |
| 344 | e.splitKeys, err = e.getSplitTableKeys() |
| 345 | return err |
| 346 | } |
| 347 | |
| 348 | // Next implements the Executor Next interface. |
| 349 | func (e *SplitTableRegionExec) Next(ctx context.Context, chk *chunk.Chunk) error { |
nothing calls this directly
no test coverage detected