-
Notifications
You must be signed in to change notification settings - Fork 47
[attr_expression] update integer type to support uint64_t input #840
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Conversation
Signed-off-by: ylj <lingyuan.ylj@antgroup.com> update integer type to support uint64_t input Signed-off-by: ylj <lingyuan.ylj@antgroup.com>
7421079
to
a6d6ce0
Compare
Codecov ReportAttention: Patch coverage is @@ Coverage Diff @@
## main #840 +/- ##
==========================================
+ Coverage 91.05% 91.17% +0.11%
==========================================
Files 221 221
Lines 14014 14178 +164
==========================================
+ Hits 12761 12927 +166
+ Misses 1253 1251 -2
Flags with carried forward coverage won't be shown. Click here to find out more.
Continue to review full report in Codecov by Sentry.
🚀 New features to boost your workflow:
|
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
LGTM
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
lgtm
if (auto i64 = std::dynamic_pointer_cast<const IntListConstant<int64_t>>(list_expr->values)) { | ||
list_variant = i64; | ||
} else if (auto u64 = | ||
std::dynamic_pointer_cast<const IntListConstant<uint64_t>>(list_expr->values)) { | ||
list_variant = u64; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@yulijunzj i64, u64 seems to be a highlight keyword, rename in next pull request
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
ok
No description provided.