littleeleventhwolf commented on a change in pull request #7183:
URL: https://github.com/apache/incubator-doris/pull/7183#discussion_r759852289
##########
File path:
fe/fe-core/src/main/java/org/apache/doris/qe/cache/PartitionRange.java
##########
@@ -238,7 +238,11 @@ public long realValue() {
}
private Date getDateValue(LiteralExpr expr) {
- value = expr.getLongValue() / 1000000;
+ if (expr.getType().equals(Type.DATE)) {
+ value = expr.getLongValue();
+ } else {
+ value = expr.getLongValue() / DateLiteral.BASIC_ZERO_TIME;
Review comment:
Yeah, you're right. Method `getDateValue` is only invoked in the case of
`DATE`, the division is unnecessary.
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]