Uh oh!
There was an error while loading. Please reload this page.
[Fix](from_unixtime) Keep consistent with MySQL & bug fix - #25966
Conversation
RoanHeNaN
commented
Oct 26, 2023
run buildall |
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
doris-robot
commented
Oct 26, 2023
(From new machine)TeamCity pipeline, clickbench performance test result: |
RoanHeNaN
commented
Oct 30, 2023
run buildall |
doris-robot
commented
Oct 30, 2023
(From new machine)TeamCity pipeline, clickbench performance test result: |
RoanHeNaN
commented
Oct 30, 2023
run buildall |
doris-robot
commented
Oct 30, 2023
(From new machine)TeamCity pipeline, clickbench performance test result: |
RoanHeNaN
commented
Oct 30, 2023
run buildall |
doris-robot
commented
Oct 30, 2023
TeamCity be ut coverage result: |
doris-robot
commented
Oct 30, 2023
(From new machine)TeamCity pipeline, clickbench performance test result: |
RoanHeNaN
commented
Oct 30, 2023
run buildall |
doris-robot
commented
Oct 30, 2023
TeamCity be ut coverage result: |
doris-robot
commented
Oct 30, 2023
(From new machine)TeamCity pipeline, clickbench performance test result: |
RoanHeNaN
commented
Oct 31, 2023
run buildall |
doris-robot
commented
Oct 31, 2023
TeamCity be ut coverage result: |
doris-robot
commented
Oct 31, 2023
(From new machine)TeamCity pipeline, clickbench performance test result: |
| public static StringLiteral fromUnixTime(LiteralExpr unixTime) throws AnalysisException { | ||
| // if unixTime < 0, we should return null, throw a exception and let BE process | ||
| if (unixTime.getLongValue() < 0 || unixTime.getLongValue() >= Integer.MAX_VALUE) { | ||
| if (unixTime.getLongValue() < 0 || unixTime.getLongValue() > 32536771199L) { |
There was a problem hiding this comment.
pls add some comment about the magic number 32536771199L as in nereids
yiguolei
commented
Oct 31, 2023
run buildall |
PR approved by at least one committer and no changes requested. |
PR approved by anyone and no changes requested. |
doris-robot
commented
Oct 31, 2023
TeamCity be ut coverage result: |
doris-robot
commented
Oct 31, 2023
(From new machine)TeamCity pipeline, clickbench performance test result: |
Bug fix: implicit convert from int32 -> int64 makes negative time stamp valid, so change signature to int64 Consistent: keep consistent with mysql.
Bug fix: implicit convert from int32 -> int64 makes negative time stamp valid, so change signature to int64 Consistent: keep consistent with mysql.
Bug fix: implicit convert from int32 -> int64 makes negative time stamp valid, so change signature to int64 Consistent: keep consistent with mysql.
Bug fix: implicit convert from int32 -> int64 makes negative time stamp valid, so change signature to int64 Consistent: keep consistent with mysql.
Bug fix: implicit convert from int32 -> int64 makes negative time stamp valid, so change signature to int64 Consistent: keep consistent with mysql.
Bug fix: implicit convert from int32 -> int64 makes negative time stamp valid, so change signature to int64 Consistent: keep consistent with mysql.
Bug fix: implicit convert from int32 -> int64 makes negative time stamp valid, so change signature to int64 Consistent: keep consistent with mysql.
Bug fix: implicit convert from int32 -> int64 makes negative time stamp valid, so change signature to int64 Consistent: keep consistent with mysql.
Not merge to 2.0, because it changed function signature.