1 В избранное 0 Ответвления 0

OSCHINA-MIRROR/hanchuanchuan-goInception

Присоединиться к Gitlife
Откройте для себя и примите участие в публичных проектах с открытым исходным кодом с участием более 10 миллионов разработчиков. Приватные репозитории также полностью бесплатны :)
Присоединиться бесплатно
Это зеркальный репозиторий, синхронизируется ежедневно с исходного репозитория.
Клонировать/Скачать
expression_test.go 4.4 КБ
Копировать Редактировать Исходные данные Просмотреть построчно История
hanchuanchuan Отправлено 6 лет назад 27f3c5a
// 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 expression
import (
"time"
"github.com/hanchuanchuan/goInception/ast"
"github.com/hanchuanchuan/goInception/model"
"github.com/hanchuanchuan/goInception/mysql"
"github.com/hanchuanchuan/goInception/sessionctx/stmtctx"
"github.com/hanchuanchuan/goInception/types"
"github.com/hanchuanchuan/goInception/util/testleak"
. "github.com/pingcap/check"
)
func (s *testEvaluatorSuite) TestNewValuesFunc(c *C) {
defer testleak.AfterTest(c)()
res := NewValuesFunc(s.ctx, 0, types.NewFieldType(mysql.TypeLonglong))
c.Assert(res.FuncName.O, Equals, "values")
c.Assert(res.RetType.Tp, Equals, mysql.TypeLonglong)
_, ok := res.Function.(*builtinValuesIntSig)
c.Assert(ok, IsTrue)
}
func (s *testEvaluatorSuite) TestEvaluateExprWithNull(c *C) {
defer testleak.AfterTest(c)()
tblInfo := newTestTableBuilder("").add("col0", mysql.TypeLonglong).add("col1", mysql.TypeLonglong).build()
schema := tableInfoToSchemaForTest(tblInfo)
col0 := schema.Columns[0]
col1 := schema.Columns[1]
schema.Columns = schema.Columns[:1]
innerIfNull, err := newFunctionForTest(s.ctx, ast.Ifnull, col1, One.Clone())
c.Assert(err, IsNil)
outerIfNull, err := newFunctionForTest(s.ctx, ast.Ifnull, col0, innerIfNull)
c.Assert(err, IsNil)
res := EvaluateExprWithNull(s.ctx, schema, outerIfNull)
c.Assert(res.String(), Equals, "ifnull(col1, 1)")
schema.Columns = append(schema.Columns, col1)
// ifnull(null, ifnull(null, 1))
res = EvaluateExprWithNull(s.ctx, schema, outerIfNull)
c.Assert(res.Equal(s.ctx, One), IsTrue)
}
func (s *testEvaluatorSuite) TestConstant(c *C) {
defer testleak.AfterTest(c)()
sc := &stmtctx.StatementContext{TimeZone: time.Local}
c.Assert(Zero.IsCorrelated(), IsFalse)
c.Assert(Zero.Decorrelate(nil).Equal(s.ctx, Zero), IsTrue)
c.Assert(Zero.HashCode(sc), DeepEquals, []byte{0x0, 0x8, 0x0})
c.Assert(Zero.Equal(s.ctx, One), IsFalse)
res, err := Zero.MarshalJSON()
c.Assert(err, IsNil)
c.Assert(res, DeepEquals, []byte{0x22, 0x30, 0x22})
}
func (s *testEvaluatorSuite) TestIsBinaryLiteral(c *C) {
col := &Column{RetType: types.NewFieldType(mysql.TypeEnum)}
c.Assert(IsBinaryLiteral(col), IsFalse)
col.RetType.Tp = mysql.TypeSet
c.Assert(IsBinaryLiteral(col), IsFalse)
col.RetType.Tp = mysql.TypeBit
c.Assert(IsBinaryLiteral(col), IsFalse)
col.RetType.Tp = mysql.TypeDuration
c.Assert(IsBinaryLiteral(col), IsFalse)
con := &Constant{RetType: types.NewFieldType(mysql.TypeVarString), Value: types.NewBinaryLiteralDatum([]byte{byte(0), byte(1)})}
c.Assert(IsBinaryLiteral(con), IsTrue)
con.Value = types.NewIntDatum(1)
c.Assert(IsBinaryLiteral(con), IsFalse)
}
type testTableBuilder struct {
tableName string
columnNames []string
tps []byte
}
func newTestTableBuilder(tableName string) *testTableBuilder {
return &testTableBuilder{tableName: tableName}
}
func (builder *testTableBuilder) add(name string, tp byte) *testTableBuilder {
builder.columnNames = append(builder.columnNames, name)
builder.tps = append(builder.tps, tp)
return builder
}
func (builder *testTableBuilder) build() *model.TableInfo {
ti := &model.TableInfo{
ID: 1,
Name: model.NewCIStr(builder.tableName),
State: model.StatePublic,
}
for i, colName := range builder.columnNames {
tp := builder.tps[i]
fieldType := types.NewFieldType(tp)
fieldType.Flen, fieldType.Decimal = mysql.GetDefaultFieldLengthAndDecimal(tp)
fieldType.Charset, fieldType.Collate = types.DefaultCharsetForType(tp)
ti.Columns = append(ti.Columns, &model.ColumnInfo{
ID: int64(i + 1),
Name: model.NewCIStr(colName),
Offset: i,
FieldType: *fieldType,
State: model.StatePublic,
})
}
return ti
}
func tableInfoToSchemaForTest(tableInfo *model.TableInfo) *Schema {
columns := tableInfo.Columns
schema := NewSchema(make([]*Column, 0, len(columns))...)
for i, col := range columns {
schema.Append(&Column{
UniqueID: int64(i),
TblName: tableInfo.Name,
ColName: col.Name,
ID: col.ID,
RetType: &col.FieldType,
})
}
return schema
}

Комментарий ( 0 )

Вы можете оставить комментарий после Вход в систему

1
https://gitlife.ru/oschina-mirror/hanchuanchuan-goInception.git
git@gitlife.ru:oschina-mirror/hanchuanchuan-goInception.git
oschina-mirror
hanchuanchuan-goInception
hanchuanchuan-goInception
v1.2.4