88 lines
2.9 KiB
Go
88 lines
2.9 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,
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
// See the License for the specific language governing permissions and
|
|
// limitations under the License.
|
|
|
|
package expression
|
|
|
|
import (
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/pingcap/tidb/parser/ast"
|
|
"github.com/pingcap/tidb/parser/mysql"
|
|
"github.com/pingcap/tidb/sessionctx/stmtctx"
|
|
"github.com/pingcap/tidb/types"
|
|
"github.com/pingcap/tidb/util/chunk"
|
|
"github.com/pingcap/tidb/util/mock"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func TestScalarFunction(t *testing.T) {
|
|
ctx := mock.NewContext()
|
|
a := &Column{
|
|
UniqueID: 1,
|
|
RetType: types.NewFieldType(mysql.TypeDouble),
|
|
}
|
|
sc := &stmtctx.StatementContext{TimeZone: time.Local}
|
|
sf := newFunction(ast.LT, a, NewOne())
|
|
res, err := sf.MarshalJSON()
|
|
require.NoError(t, err)
|
|
require.EqualValues(t, []byte{0x22, 0x6c, 0x74, 0x28, 0x43, 0x6f, 0x6c, 0x75, 0x6d, 0x6e, 0x23, 0x31, 0x2c, 0x20, 0x31, 0x29, 0x22}, res)
|
|
require.False(t, sf.IsCorrelated())
|
|
require.False(t, sf.ConstItem(ctx.GetSessionVars().StmtCtx))
|
|
require.True(t, sf.Decorrelate(nil).Equal(ctx, sf))
|
|
require.EqualValues(t, []byte{0x3, 0x4, 0x6c, 0x74, 0x1, 0x80, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x1, 0x0, 0x5, 0xbf, 0xf0, 0x0, 0x0, 0x0, 0x0, 0x0, 0x0}, sf.HashCode(sc))
|
|
|
|
sf = NewValuesFunc(ctx, 0, types.NewFieldType(mysql.TypeLonglong))
|
|
newSf, ok := sf.Clone().(*ScalarFunction)
|
|
require.True(t, ok)
|
|
require.Equal(t, "values", newSf.FuncName.O)
|
|
require.Equal(t, mysql.TypeLonglong, newSf.RetType.GetType())
|
|
require.Equal(t, sf.Coercibility(), newSf.Coercibility())
|
|
require.Equal(t, sf.Repertoire(), newSf.Repertoire())
|
|
_, ok = newSf.Function.(*builtinValuesIntSig)
|
|
require.True(t, ok)
|
|
}
|
|
|
|
func TestIssue23309(t *testing.T) {
|
|
a := &Column{
|
|
UniqueID: 1,
|
|
RetType: types.NewFieldType(mysql.TypeDouble),
|
|
}
|
|
|
|
a.RetType.SetFlag(a.RetType.GetFlag() | mysql.NotNullFlag)
|
|
null := NewNull()
|
|
null.RetType = types.NewFieldType(mysql.TypeNull)
|
|
sf, _ := newFunction(ast.NE, a, null).(*ScalarFunction)
|
|
v, err := sf.GetArgs()[1].Eval(chunk.Row{})
|
|
require.NoError(t, err)
|
|
require.True(t, v.IsNull())
|
|
require.False(t, mysql.HasNotNullFlag(sf.GetArgs()[1].GetType().GetFlag()))
|
|
}
|
|
|
|
func TestScalarFuncs2Exprs(t *testing.T) {
|
|
ctx := mock.NewContext()
|
|
a := &Column{
|
|
UniqueID: 1,
|
|
RetType: types.NewFieldType(mysql.TypeDouble),
|
|
}
|
|
sf0, _ := newFunction(ast.LT, a, NewZero()).(*ScalarFunction)
|
|
sf1, _ := newFunction(ast.LT, a, NewOne()).(*ScalarFunction)
|
|
|
|
funcs := []*ScalarFunction{sf0, sf1}
|
|
exprs := ScalarFuncs2Exprs(funcs)
|
|
for i := range exprs {
|
|
require.True(t, exprs[i].Equal(ctx, funcs[i]))
|
|
}
|
|
}
|