-
Notifications
You must be signed in to change notification settings - Fork 5.9k
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
expression, plan: support builtin aggregation function 'bit_xor' #5090
Conversation
Hi contributor, thanks for your PR. This patch needs to be approved by someone of admins. They should reply with "/ok-to-test" to accept this PR for running test automatically. |
/ok-to-test |
/run-all-tests |
@@ -79,6 +79,7 @@ const ( | |||
ExprType_Max ExprType = 3005 | |||
ExprType_First ExprType = 3006 | |||
ExprType_GroupConcat ExprType = 3007 | |||
ExprType_AggBitXor ExprType = 3008 |
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.
keep the code alignment.
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
LGTM |
Conflicts: ast/functions.go expression/aggregation/agg_to_pb.go expression/aggregation/aggregation.go expression/integration_test.go plan/physical_plans.go
f254041
to
94a1adb
Compare
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
for #5077, support builtin aggregation function 'bit_xor' in TiDB.
To support this pr, tipb must be updated too. See My another pr: https://github.com/pingcap/tipb/pull/46/files