Skip to content

Commit

Permalink
fixup
Browse files Browse the repository at this point in the history
  • Loading branch information
qw4990 committed Jul 31, 2024
1 parent 0a76daa commit c8f2602
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions pkg/planner/core/exhaust_physical_plans_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -203,8 +203,11 @@ func testAnalyzeLookUpFilters(t *testing.T, testCtx *indexJoinContext, testCase
innerJoinKeys: testCase.innerKeys,
innerStats: dataSourceNode.StatsInfo(),
innerSchema: dataSourceNode.Schema(),
innerPushedConditions: dataSourceNode.PushedDownConds}
_, err = helper.analyzeLookUpFilters(testCtx.path, testCase.rebuildMode)
innerPushedConditions: dataSourceNode.PushedDownConds,
innerIndexCols: testCtx.path.IdxCols,
innerIndexColLens: testCtx.path.IdxColLens,
}
_, err = helper.analyzeLookUpFilters(testCase.rebuildMode)
if helper.chosenRanges == nil {
helper.chosenRanges = ranger.Ranges{}
}
Expand Down

0 comments on commit c8f2602

Please sign in to comment.