-
Notifications
You must be signed in to change notification settings - Fork 5.8k
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
aggfuncs: implement bit-or with new aggregation framework #6975
Changes from 7 commits
6b7ecfe
ced83db
5f59da3
742a5ff
da9bfd1
d826d6b
0b00dc8
836aafd
cd51cdb
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -120,6 +120,15 @@ func buildGroupConcat(aggFuncDesc *aggregation.AggFuncDesc, ordinal int) AggFunc | |
|
||
// buildCount builds the AggFunc implementation for function "BIT_OR". | ||
func buildBitOr(aggFuncDesc *aggregation.AggFuncDesc, ordinal int) AggFunc { | ||
// BIT_OR doesn't need to handle the distinct property. | ||
switch aggFuncDesc.Args[0].GetType().Tp { | ||
case mysql.TypeLonglong: | ||
base := baseAggFunc{ | ||
args: aggFuncDesc.Args, | ||
ordinal: ordinal, | ||
} | ||
return &bitOrUint64{baseBitAggFunc{base}} | ||
} | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. need to handle the function which has the There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. why bit-or need to care There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. consider this query: There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. It doesn't matter, because There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. ok There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. please add a comment here to statement that function There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. done |
||
return nil | ||
} | ||
|
||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,60 @@ | ||
// Copyright 2018 PingCAP, Inc. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); | ||
// you may not use this file except in compliance with the License. | ||
// You may obtain a copy of the License at | ||
// | ||
// http://www.apache.org/licenses/LICENSE-2.0 | ||
// | ||
// Unless required by applicable law or agreed to in writing, software | ||
// distributed under the License is distributed on an "AS IS" BASIS, | ||
// See the License for the specific language governing permissions and | ||
// limitations under the License. | ||
|
||
package aggfuncs | ||
|
||
import ( | ||
"github.com/juju/errors" | ||
"github.com/pingcap/tidb/sessionctx" | ||
"github.com/pingcap/tidb/util/chunk" | ||
) | ||
|
||
type baseBitAggFunc struct { | ||
baseAggFunc | ||
} | ||
|
||
type bitOrUint64 struct { | ||
baseBitAggFunc | ||
} | ||
|
||
type partialResult4BitFunc = uint64 | ||
|
||
func (e *bitOrUint64) AllocPartialResult() PartialResult { | ||
return PartialResult(new(partialResult4BitFunc)) | ||
} | ||
|
||
func (e *bitOrUint64) ResetPartialResult(pr PartialResult) { | ||
p := (*partialResult4BitFunc)(pr) | ||
*p = 0 | ||
} | ||
|
||
func (e *bitOrUint64) AppendFinalResult2Chunk(sctx sessionctx.Context, pr PartialResult, chk *chunk.Chunk) error { | ||
p := (*partialResult4BitFunc)(pr) | ||
chk.AppendUint64(e.ordinal, *p) | ||
return nil | ||
} | ||
|
||
func (e *bitOrUint64) UpdatePartialResult(sctx sessionctx.Context, rowsInGroup []chunk.Row, pr PartialResult) error { | ||
p := (*partialResult4BitFunc)(pr) | ||
for _, row := range rowsInGroup { | ||
inputValue, isNull, err := e.args[0].EvalInt(sctx, row) | ||
if err != nil { | ||
return errors.Trace(err) | ||
} | ||
if isNull { | ||
continue | ||
} | ||
*p |= uint64(inputValue) | ||
} | ||
return nil | ||
} |
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.
switch aggFuncDesc.Args[0].GetType().EvalType(){
case types.ETInt:
xxxx
}
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.
Done. PTAL