MCPcopy Create free account
hub / github.com/pingcap/tidb / putResult

Method putResult

pkg/executor/parallel_apply.go:260–267  ·  view source on GitHub ↗
(chk *chunk.Chunk, err error)

Source from the content-addressed store, hash-verified

258}
259
260func (e *ParallelNestedLoopApplyExec) putResult(chk *chunk.Chunk, err error) (exit bool) {
261 select {
262 case e.resultChkCh <- result{chk, err}:
263 return false
264 case <-e.exit:
265 return true
266 }
267}
268
269func (e *ParallelNestedLoopApplyExec) handleWorkerPanic(ctx context.Context, wg *sync.WaitGroup) {
270 if r := recover(); r != nil {

Callers 3

notifyWorkerMethod · 0.95
outerWorkerMethod · 0.95
innerWorkerMethod · 0.95

Calls

no outgoing calls

Tested by

no test coverage detected