90 Star 491 Fork 151

平凯星辰(北京)科技有限公司/tidb

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
文件
克隆/下载
func_first_row.go 11.75 KB
一键复制 编辑 原始数据 按行查看 历史
// 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/pingcap/tidb/sessionctx"
"github.com/pingcap/tidb/types"
"github.com/pingcap/tidb/types/json"
"github.com/pingcap/tidb/util/chunk"
"github.com/pingcap/tidb/util/stringutil"
"github.com/pkg/errors"
)
type basePartialResult4FirstRow struct {
// isNull indicates whether the first row is null.
isNull bool
// gotFirstRow indicates whether the first row has been got,
// if so, we would avoid evaluating the values of the remained rows.
gotFirstRow bool
}
type partialResult4FirstRowInt struct {
basePartialResult4FirstRow
val int64
}
type partialResult4FirstRowFloat32 struct {
basePartialResult4FirstRow
val float32
}
type partialResult4FirstRowDecimal struct {
basePartialResult4FirstRow
val types.MyDecimal
}
type partialResult4FirstRowFloat64 struct {
basePartialResult4FirstRow
val float64
}
type partialResult4FirstRowString struct {
basePartialResult4FirstRow
val string
}
type partialResult4FirstRowTime struct {
basePartialResult4FirstRow
val types.Time
}
type partialResult4FirstRowDuration struct {
basePartialResult4FirstRow
val types.Duration
}
type partialResult4FirstRowJSON struct {
basePartialResult4FirstRow
val json.BinaryJSON
}
type firstRow4Int struct {
baseAggFunc
}
func (e *firstRow4Int) AllocPartialResult() PartialResult {
return PartialResult(new(partialResult4FirstRowInt))
}
func (e *firstRow4Int) ResetPartialResult(pr PartialResult) {
p := (*partialResult4FirstRowInt)(pr)
p.val, p.isNull, p.gotFirstRow = 0, false, false
}
func (e *firstRow4Int) UpdatePartialResult(sctx sessionctx.Context, rowsInGroup []chunk.Row, pr PartialResult) error {
p := (*partialResult4FirstRowInt)(pr)
if p.gotFirstRow {
return nil
}
for _, row := range rowsInGroup {
input, isNull, err := e.args[0].EvalInt(sctx, row)
if err != nil {
return errors.Trace(err)
}
p.gotFirstRow, p.isNull, p.val = true, isNull, input
break
}
return nil
}
func (*firstRow4Int) MergePartialResult(sctx sessionctx.Context, src PartialResult, dst PartialResult) error {
p1, p2 := (*partialResult4FirstRowInt)(src), (*partialResult4FirstRowInt)(dst)
if !p2.gotFirstRow {
*p2 = *p1
}
return nil
}
func (e *firstRow4Int) AppendFinalResult2Chunk(sctx sessionctx.Context, pr PartialResult, chk *chunk.Chunk) error {
p := (*partialResult4FirstRowInt)(pr)
if p.isNull || !p.gotFirstRow {
chk.AppendNull(e.ordinal)
return nil
}
chk.AppendInt64(e.ordinal, p.val)
return nil
}
type firstRow4Float32 struct {
baseAggFunc
}
func (e *firstRow4Float32) AllocPartialResult() PartialResult {
return PartialResult(new(partialResult4FirstRowFloat32))
}
func (e *firstRow4Float32) ResetPartialResult(pr PartialResult) {
p := (*partialResult4FirstRowFloat32)(pr)
p.isNull, p.gotFirstRow = false, false
}
func (e *firstRow4Float32) UpdatePartialResult(sctx sessionctx.Context, rowsInGroup []chunk.Row, pr PartialResult) error {
p := (*partialResult4FirstRowFloat32)(pr)
if p.gotFirstRow {
return nil
}
for _, row := range rowsInGroup {
input, isNull, err := e.args[0].EvalReal(sctx, row)
if err != nil {
return errors.Trace(err)
}
p.gotFirstRow, p.isNull, p.val = true, isNull, float32(input)
break
}
return nil
}
func (*firstRow4Float32) MergePartialResult(sctx sessionctx.Context, src PartialResult, dst PartialResult) error {
p1, p2 := (*partialResult4FirstRowFloat32)(src), (*partialResult4FirstRowFloat32)(dst)
if !p2.gotFirstRow {
*p2 = *p1
}
return nil
}
func (e *firstRow4Float32) AppendFinalResult2Chunk(sctx sessionctx.Context, pr PartialResult, chk *chunk.Chunk) error {
p := (*partialResult4FirstRowFloat32)(pr)
if p.isNull || !p.gotFirstRow {
chk.AppendNull(e.ordinal)
return nil
}
chk.AppendFloat32(e.ordinal, p.val)
return nil
}
type firstRow4Float64 struct {
baseAggFunc
}
func (e *firstRow4Float64) AllocPartialResult() PartialResult {
return PartialResult(new(partialResult4FirstRowFloat64))
}
func (e *firstRow4Float64) ResetPartialResult(pr PartialResult) {
p := (*partialResult4FirstRowFloat64)(pr)
p.isNull, p.gotFirstRow = false, false
}
func (e *firstRow4Float64) UpdatePartialResult(sctx sessionctx.Context, rowsInGroup []chunk.Row, pr PartialResult) error {
p := (*partialResult4FirstRowFloat64)(pr)
if p.gotFirstRow {
return nil
}
for _, row := range rowsInGroup {
input, isNull, err := e.args[0].EvalReal(sctx, row)
if err != nil {
return errors.Trace(err)
}
p.gotFirstRow, p.isNull, p.val = true, isNull, input
break
}
return nil
}
func (*firstRow4Float64) MergePartialResult(sctx sessionctx.Context, src PartialResult, dst PartialResult) error {
p1, p2 := (*partialResult4FirstRowFloat64)(src), (*partialResult4FirstRowFloat64)(dst)
if !p2.gotFirstRow {
*p2 = *p1
}
return nil
}
func (e *firstRow4Float64) AppendFinalResult2Chunk(sctx sessionctx.Context, pr PartialResult, chk *chunk.Chunk) error {
p := (*partialResult4FirstRowFloat64)(pr)
if p.isNull || !p.gotFirstRow {
chk.AppendNull(e.ordinal)
return nil
}
chk.AppendFloat64(e.ordinal, p.val)
return nil
}
type firstRow4String struct {
baseAggFunc
}
func (e *firstRow4String) AllocPartialResult() PartialResult {
return PartialResult(new(partialResult4FirstRowString))
}
func (e *firstRow4String) ResetPartialResult(pr PartialResult) {
p := (*partialResult4FirstRowString)(pr)
p.isNull, p.gotFirstRow = false, false
}
func (e *firstRow4String) UpdatePartialResult(sctx sessionctx.Context, rowsInGroup []chunk.Row, pr PartialResult) error {
p := (*partialResult4FirstRowString)(pr)
if p.gotFirstRow {
return nil
}
for _, row := range rowsInGroup {
input, isNull, err := e.args[0].EvalString(sctx, row)
if err != nil {
return errors.Trace(err)
}
p.gotFirstRow, p.isNull, p.val = true, isNull, stringutil.Copy(input)
break
}
return nil
}
func (*firstRow4String) MergePartialResult(sctx sessionctx.Context, src PartialResult, dst PartialResult) error {
p1, p2 := (*partialResult4FirstRowString)(src), (*partialResult4FirstRowString)(dst)
if !p2.gotFirstRow {
*p2 = *p1
}
return nil
}
func (e *firstRow4String) AppendFinalResult2Chunk(sctx sessionctx.Context, pr PartialResult, chk *chunk.Chunk) error {
p := (*partialResult4FirstRowString)(pr)
if p.isNull || !p.gotFirstRow {
chk.AppendNull(e.ordinal)
return nil
}
chk.AppendString(e.ordinal, p.val)
return nil
}
type firstRow4Time struct {
baseAggFunc
}
func (e *firstRow4Time) AllocPartialResult() PartialResult {
return PartialResult(new(partialResult4FirstRowTime))
}
func (e *firstRow4Time) ResetPartialResult(pr PartialResult) {
p := (*partialResult4FirstRowTime)(pr)
p.isNull, p.gotFirstRow = false, false
}
func (e *firstRow4Time) UpdatePartialResult(sctx sessionctx.Context, rowsInGroup []chunk.Row, pr PartialResult) error {
p := (*partialResult4FirstRowTime)(pr)
if p.gotFirstRow {
return nil
}
for _, row := range rowsInGroup {
input, isNull, err := e.args[0].EvalTime(sctx, row)
if err != nil {
return errors.Trace(err)
}
p.gotFirstRow, p.isNull, p.val = true, isNull, input
break
}
return nil
}
func (*firstRow4Time) MergePartialResult(sctx sessionctx.Context, src PartialResult, dst PartialResult) error {
p1, p2 := (*partialResult4FirstRowTime)(src), (*partialResult4FirstRowTime)(dst)
if !p2.gotFirstRow {
*p2 = *p1
}
return nil
}
func (e *firstRow4Time) AppendFinalResult2Chunk(sctx sessionctx.Context, pr PartialResult, chk *chunk.Chunk) error {
p := (*partialResult4FirstRowTime)(pr)
if p.isNull || !p.gotFirstRow {
chk.AppendNull(e.ordinal)
return nil
}
chk.AppendTime(e.ordinal, p.val)
return nil
}
type firstRow4Duration struct {
baseAggFunc
}
func (e *firstRow4Duration) AllocPartialResult() PartialResult {
return PartialResult(new(partialResult4FirstRowDuration))
}
func (e *firstRow4Duration) ResetPartialResult(pr PartialResult) {
p := (*partialResult4FirstRowDuration)(pr)
p.isNull, p.gotFirstRow = false, false
}
func (e *firstRow4Duration) UpdatePartialResult(sctx sessionctx.Context, rowsInGroup []chunk.Row, pr PartialResult) error {
p := (*partialResult4FirstRowDuration)(pr)
if p.gotFirstRow {
return nil
}
for _, row := range rowsInGroup {
input, isNull, err := e.args[0].EvalDuration(sctx, row)
if err != nil {
return errors.Trace(err)
}
p.gotFirstRow, p.isNull, p.val = true, isNull, input
break
}
return nil
}
func (*firstRow4Duration) MergePartialResult(sctx sessionctx.Context, src PartialResult, dst PartialResult) error {
p1, p2 := (*partialResult4FirstRowDuration)(src), (*partialResult4FirstRowDuration)(dst)
if !p2.gotFirstRow {
*p2 = *p1
}
return nil
}
func (e *firstRow4Duration) AppendFinalResult2Chunk(sctx sessionctx.Context, pr PartialResult, chk *chunk.Chunk) error {
p := (*partialResult4FirstRowDuration)(pr)
if p.isNull || !p.gotFirstRow {
chk.AppendNull(e.ordinal)
return nil
}
chk.AppendDuration(e.ordinal, p.val)
return nil
}
type firstRow4JSON struct {
baseAggFunc
}
func (e *firstRow4JSON) AllocPartialResult() PartialResult {
return PartialResult(new(partialResult4FirstRowJSON))
}
func (e *firstRow4JSON) ResetPartialResult(pr PartialResult) {
p := (*partialResult4FirstRowJSON)(pr)
p.isNull, p.gotFirstRow = false, false
}
func (e *firstRow4JSON) UpdatePartialResult(sctx sessionctx.Context, rowsInGroup []chunk.Row, pr PartialResult) error {
p := (*partialResult4FirstRowJSON)(pr)
if p.gotFirstRow {
return nil
}
for _, row := range rowsInGroup {
input, isNull, err := e.args[0].EvalJSON(sctx, row)
if err != nil {
return errors.Trace(err)
}
p.gotFirstRow, p.isNull, p.val = true, isNull, input
break
}
return nil
}
func (*firstRow4JSON) MergePartialResult(sctx sessionctx.Context, src PartialResult, dst PartialResult) error {
p1, p2 := (*partialResult4FirstRowJSON)(src), (*partialResult4FirstRowJSON)(dst)
if !p2.gotFirstRow {
*p2 = *p1
}
return nil
}
func (e *firstRow4JSON) AppendFinalResult2Chunk(sctx sessionctx.Context, pr PartialResult, chk *chunk.Chunk) error {
p := (*partialResult4FirstRowJSON)(pr)
if p.isNull || !p.gotFirstRow {
chk.AppendNull(e.ordinal)
return nil
}
chk.AppendJSON(e.ordinal, p.val)
return nil
}
type firstRow4Decimal struct {
baseAggFunc
}
func (e *firstRow4Decimal) AllocPartialResult() PartialResult {
return PartialResult(new(partialResult4FirstRowDecimal))
}
func (e *firstRow4Decimal) ResetPartialResult(pr PartialResult) {
p := (*partialResult4FirstRowDecimal)(pr)
p.isNull, p.gotFirstRow = false, false
}
func (e *firstRow4Decimal) UpdatePartialResult(sctx sessionctx.Context, rowsInGroup []chunk.Row, pr PartialResult) error {
p := (*partialResult4FirstRowDecimal)(pr)
if p.gotFirstRow {
return nil
}
for _, row := range rowsInGroup {
input, isNull, err := e.args[0].EvalDecimal(sctx, row)
if err != nil {
return errors.Trace(err)
}
p.gotFirstRow, p.isNull = true, isNull
if input != nil {
p.val = *input
}
break
}
return nil
}
func (e *firstRow4Decimal) AppendFinalResult2Chunk(sctx sessionctx.Context, pr PartialResult, chk *chunk.Chunk) error {
p := (*partialResult4FirstRowDecimal)(pr)
if p.isNull || !p.gotFirstRow {
chk.AppendNull(e.ordinal)
return nil
}
chk.AppendMyDecimal(e.ordinal, &p.val)
return nil
}
func (*firstRow4Decimal) MergePartialResult(sctx sessionctx.Context, src PartialResult, dst PartialResult) error {
p1, p2 := (*partialResult4FirstRowDecimal)(src), (*partialResult4FirstRowDecimal)(dst)
if !p2.gotFirstRow {
*p2 = *p1
}
return nil
}
Loading...
马建仓 AI 助手
尝试更多
代码解读
代码找茬
代码优化
Go
1
https://gitee.com/pingcap/tidb.git
git@gitee.com:pingcap/tidb.git
pingcap
tidb
tidb
v2.1.0-rc.5

搜索帮助

0d507c66 1850385 C8b1a773 1850385