Skip to content

Commit

Permalink
improve AutoFunction avoid repeat compute
Browse files Browse the repository at this point in the history
  • Loading branch information
junwen12221 committed May 23, 2022
1 parent 07dde3e commit dbcfc48
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,10 @@ public List<Partition> calculate(Map<String, RangeVariable> values) {
}
}
}

if (getDbIndex && getTIndex) {
break;
}
}
if (getDbIndex && getTIndex) {
return (List) scanOnlyDbTableIndex(dIndex, tIndex);
Expand Down

0 comments on commit dbcfc48

Please sign in to comment.