Skip to content

Commit

Permalink
executor: fix CI testSerialSuite.TestIndexJoin31494 npe (pingcap#32743)
Browse files Browse the repository at this point in the history
  • Loading branch information
wshwsh12 authored Mar 2, 2022
1 parent 17106ff commit 7178482
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion executor/index_lookup_hash_join.go
Original file line number Diff line number Diff line change
Expand Up @@ -527,7 +527,7 @@ func (iw *indexHashJoinInnerWorker) getNewJoinResult(ctx context.Context) (*inde
select {
case joinResult.chk, ok = <-iw.joinChkResourceCh:
case <-ctx.Done():
return nil, false
return joinResult, false
}
return joinResult, ok
}
Expand Down

0 comments on commit 7178482

Please sign in to comment.