Files
tidb/statistics/scalar_test.go
2018-10-25 11:12:10 +08:00

171 lines
5.0 KiB
Go

// Copyright 2017 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 statistics
import (
"math"
. "github.com/pingcap/check"
"github.com/pingcap/parser/mysql"
"github.com/pingcap/tidb/types"
)
const eps = 1e-9
func getDecimal(value float64) *types.MyDecimal {
dec := &types.MyDecimal{}
dec.FromFloat64(value)
return dec
}
func getDuration(value string) types.Duration {
dur, _ := types.ParseDuration(nil, value, 0)
return dur
}
func getTime(year, month, day int, timeType byte) types.Time {
ret := types.Time{
Time: types.FromDate(year, int(month), day, 0, 0, 0, 0),
Type: timeType,
Fsp: types.DefaultFsp}
return ret
}
func getBinaryLiteral(value string) types.BinaryLiteral {
b, _ := types.ParseBitStr(value)
return b
}
func getUnsignedFieldType() *types.FieldType {
tp := types.NewFieldType(mysql.TypeLonglong)
tp.Flag |= mysql.UnsignedFlag
return tp
}
func (s *testStatisticsSuite) TestCalcFraction(c *C) {
tests := []struct {
lower types.Datum
upper types.Datum
value types.Datum
fraction float64
tp *types.FieldType
}{
{
lower: types.NewIntDatum(0),
upper: types.NewIntDatum(4),
value: types.NewIntDatum(1),
fraction: 0.25,
tp: types.NewFieldType(mysql.TypeLonglong),
},
{
lower: types.NewIntDatum(0),
upper: types.NewIntDatum(4),
value: types.NewIntDatum(4),
fraction: 1,
tp: types.NewFieldType(mysql.TypeLonglong),
},
{
lower: types.NewIntDatum(0),
upper: types.NewIntDatum(4),
value: types.NewIntDatum(-1),
fraction: 0,
tp: types.NewFieldType(mysql.TypeLonglong),
},
{
lower: types.NewUintDatum(0),
upper: types.NewUintDatum(4),
value: types.NewUintDatum(1),
fraction: 0.25,
tp: getUnsignedFieldType(),
},
{
lower: types.NewFloat64Datum(0),
upper: types.NewFloat64Datum(4),
value: types.NewFloat64Datum(1),
fraction: 0.25,
tp: types.NewFieldType(mysql.TypeDouble),
},
{
lower: types.NewFloat32Datum(0),
upper: types.NewFloat32Datum(4),
value: types.NewFloat32Datum(1),
fraction: 0.25,
tp: types.NewFieldType(mysql.TypeFloat),
},
{
lower: types.NewDecimalDatum(getDecimal(0)),
upper: types.NewDecimalDatum(getDecimal(4)),
value: types.NewDecimalDatum(getDecimal(1)),
fraction: 0.25,
tp: types.NewFieldType(mysql.TypeNewDecimal),
},
{
lower: types.NewMysqlBitDatum(getBinaryLiteral("0b0")),
upper: types.NewMysqlBitDatum(getBinaryLiteral("0b100")),
value: types.NewMysqlBitDatum(getBinaryLiteral("0b1")),
fraction: 0.5,
tp: types.NewFieldType(mysql.TypeBit),
},
{
lower: types.NewDurationDatum(getDuration("0:00:00")),
upper: types.NewDurationDatum(getDuration("4:00:00")),
value: types.NewDurationDatum(getDuration("1:00:00")),
fraction: 0.25,
tp: types.NewFieldType(mysql.TypeDuration),
},
{
lower: types.NewTimeDatum(getTime(2017, 1, 1, mysql.TypeTimestamp)),
upper: types.NewTimeDatum(getTime(2017, 4, 1, mysql.TypeTimestamp)),
value: types.NewTimeDatum(getTime(2017, 2, 1, mysql.TypeTimestamp)),
fraction: 0.34444444444444444,
tp: types.NewFieldType(mysql.TypeTimestamp),
},
{
lower: types.NewTimeDatum(getTime(2017, 1, 1, mysql.TypeDatetime)),
upper: types.NewTimeDatum(getTime(2017, 4, 1, mysql.TypeDatetime)),
value: types.NewTimeDatum(getTime(2017, 2, 1, mysql.TypeDatetime)),
fraction: 0.34444444444444444,
tp: types.NewFieldType(mysql.TypeDatetime),
},
{
lower: types.NewTimeDatum(getTime(2017, 1, 1, mysql.TypeDate)),
upper: types.NewTimeDatum(getTime(2017, 4, 1, mysql.TypeDate)),
value: types.NewTimeDatum(getTime(2017, 2, 1, mysql.TypeDate)),
fraction: 0.34444444444444444,
tp: types.NewFieldType(mysql.TypeDate),
},
{
lower: types.NewStringDatum("aasad"),
upper: types.NewStringDatum("addad"),
value: types.NewStringDatum("abfsd"),
fraction: 0.32280253984063745,
tp: types.NewFieldType(mysql.TypeString),
},
{
lower: types.NewBytesDatum([]byte("aasad")),
upper: types.NewBytesDatum([]byte("asdff")),
value: types.NewBytesDatum([]byte("abfsd")),
fraction: 0.0529216802217269,
tp: types.NewFieldType(mysql.TypeBlob),
},
}
for _, test := range tests {
hg := NewHistogram(0, 0, 0, 0, test.tp, 1, 0)
hg.AppendBucket(&test.lower, &test.upper, 0, 0)
hg.PreCalculateScalar()
fraction := hg.calcFraction(0, &test.value)
c.Check(math.Abs(fraction-test.fraction) < eps, IsTrue)
}
}