We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent a8fff0f commit c65a93aCopy full SHA for c65a93a
executor/builder.go
@@ -3285,7 +3285,11 @@ func (b *executorBuilder) buildIndexLookUpMergeJoin(v *plannercore.PhysicalIndex
3285
}
3286
3287
func (b *executorBuilder) buildIndexNestedLoopHashJoin(v *plannercore.PhysicalIndexHashJoin) Executor {
3288
- e := b.buildIndexLookUpJoin(&(v.PhysicalIndexJoin)).(*IndexLookUpJoin)
+ join := b.buildIndexLookUpJoin(&(v.PhysicalIndexJoin))
3289
+ if b.err != nil {
3290
+ return nil
3291
+ }
3292
+ e := join.(*IndexLookUpJoin)
3293
idxHash := &IndexNestedLoopHashJoin{
3294
IndexLookUpJoin: *e,
3295
keepOuterOrder: v.KeepOuterOrder,
0 commit comments