Skip to content

Commit

Permalink
[fix](mtmv)partition limit #32978
Browse files Browse the repository at this point in the history
  • Loading branch information
zddr authored and Doris-Extras committed Mar 31, 2024
1 parent 99ee475 commit 1b73046
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ public boolean isGreaterThanSpecifiedTime(int pos, Optional<String> dateFormatOp
}
// If the upper limit of the partition range meets the requirements, this partition needs to be retained
return !isDefaultPartition() && MTMVUtil.getExprTimeSec(partitionKey.getKeys().get(pos), dateFormatOptional)
>= nowTruncSubSec;
> nowTruncSubSec;
}

@Override
Expand Down

0 comments on commit 1b73046

Please sign in to comment.