270 lines
6.4 KiB
Go
270 lines
6.4 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 expression
|
|
|
|
import (
|
|
"sort"
|
|
|
|
"github.com/juju/errors"
|
|
"github.com/pingcap/tidb/context"
|
|
"github.com/pingcap/tidb/parser/opcode"
|
|
"github.com/pingcap/tidb/util/types"
|
|
)
|
|
|
|
var (
|
|
_ functionClass = &coalesceFunctionClass{}
|
|
_ functionClass = &greatestFunctionClass{}
|
|
_ functionClass = &leastFunctionClass{}
|
|
_ functionClass = &intervalFunctionClass{}
|
|
_ functionClass = &compareFunctionClass{}
|
|
)
|
|
|
|
var (
|
|
_ builtinFunc = &builtinCoalesceSig{}
|
|
_ builtinFunc = &builtinGreatestSig{}
|
|
_ builtinFunc = &builtinLeastSig{}
|
|
_ builtinFunc = &builtinIntervalSig{}
|
|
_ builtinFunc = &builtinCompareSig{}
|
|
)
|
|
|
|
type coalesceFunctionClass struct {
|
|
baseFunctionClass
|
|
}
|
|
|
|
func (c *coalesceFunctionClass) getFunction(args []Expression, ctx context.Context) (builtinFunc, error) {
|
|
return &builtinCoalesceSig{newBaseBuiltinFunc(args, ctx)}, errors.Trace(c.verifyArgs(args))
|
|
}
|
|
|
|
type builtinCoalesceSig struct {
|
|
baseBuiltinFunc
|
|
}
|
|
|
|
func (b *builtinCoalesceSig) eval(row []types.Datum) (types.Datum, error) {
|
|
args, err := b.evalArgs(row)
|
|
if err != nil {
|
|
return types.Datum{}, errors.Trace(err)
|
|
}
|
|
return builtinCoalesce(args, b.ctx)
|
|
}
|
|
|
|
// See http://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html#function_coalesce
|
|
func builtinCoalesce(args []types.Datum, ctx context.Context) (d types.Datum, err error) {
|
|
for _, d = range args {
|
|
if !d.IsNull() {
|
|
return d, nil
|
|
}
|
|
}
|
|
return d, nil
|
|
}
|
|
|
|
type greatestFunctionClass struct {
|
|
baseFunctionClass
|
|
}
|
|
|
|
func (c *greatestFunctionClass) getFunction(args []Expression, ctx context.Context) (builtinFunc, error) {
|
|
return &builtinGreatestSig{newBaseBuiltinFunc(args, ctx)}, errors.Trace(c.verifyArgs(args))
|
|
}
|
|
|
|
type builtinGreatestSig struct {
|
|
baseBuiltinFunc
|
|
}
|
|
|
|
// See http://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html#function_greatest
|
|
func (b *builtinGreatestSig) eval(row []types.Datum) (d types.Datum, err error) {
|
|
args, err := b.evalArgs(row)
|
|
if err != nil {
|
|
return types.Datum{}, errors.Trace(err)
|
|
}
|
|
if args[0].IsNull() {
|
|
return
|
|
}
|
|
max := 0
|
|
sc := b.ctx.GetSessionVars().StmtCtx
|
|
for i := 1; i < len(args); i++ {
|
|
if args[i].IsNull() {
|
|
return
|
|
}
|
|
|
|
var cmp int
|
|
if cmp, err = args[i].CompareDatum(sc, args[max]); err != nil {
|
|
return
|
|
}
|
|
|
|
if cmp > 0 {
|
|
max = i
|
|
}
|
|
}
|
|
d = args[max]
|
|
return
|
|
}
|
|
|
|
type leastFunctionClass struct {
|
|
baseFunctionClass
|
|
}
|
|
|
|
func (c *leastFunctionClass) getFunction(args []Expression, ctx context.Context) (builtinFunc, error) {
|
|
return &builtinLeastSig{newBaseBuiltinFunc(args, ctx)}, errors.Trace(c.verifyArgs(args))
|
|
}
|
|
|
|
type builtinLeastSig struct {
|
|
baseBuiltinFunc
|
|
}
|
|
|
|
// See http://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html#function_least
|
|
func (b *builtinLeastSig) eval(row []types.Datum) (d types.Datum, err error) {
|
|
args, err := b.evalArgs(row)
|
|
if err != nil {
|
|
return types.Datum{}, errors.Trace(err)
|
|
}
|
|
if args[0].IsNull() {
|
|
return
|
|
}
|
|
min := 0
|
|
sc := b.ctx.GetSessionVars().StmtCtx
|
|
for i := 1; i < len(args); i++ {
|
|
if args[i].IsNull() {
|
|
return
|
|
}
|
|
|
|
var cmp int
|
|
if cmp, err = args[i].CompareDatum(sc, args[min]); err != nil {
|
|
return
|
|
}
|
|
|
|
if cmp < 0 {
|
|
min = i
|
|
}
|
|
}
|
|
d = args[min]
|
|
return
|
|
}
|
|
|
|
type intervalFunctionClass struct {
|
|
baseFunctionClass
|
|
}
|
|
|
|
func (c *intervalFunctionClass) getFunction(args []Expression, ctx context.Context) (builtinFunc, error) {
|
|
return &builtinIntervalSig{newBaseBuiltinFunc(args, ctx)}, errors.Trace(c.verifyArgs(args))
|
|
}
|
|
|
|
type builtinIntervalSig struct {
|
|
baseBuiltinFunc
|
|
}
|
|
|
|
// See http://dev.mysql.com/doc/refman/5.7/en/comparison-operators.html#function_interval
|
|
func (b *builtinIntervalSig) eval(row []types.Datum) (d types.Datum, err error) {
|
|
args, err := b.evalArgs(row)
|
|
if err != nil {
|
|
return types.Datum{}, errors.Trace(err)
|
|
}
|
|
if args[0].IsNull() {
|
|
d.SetInt64(int64(-1))
|
|
return
|
|
}
|
|
sc := b.ctx.GetSessionVars().StmtCtx
|
|
|
|
idx := sort.Search(len(args)-1, func(i int) bool {
|
|
d1, d2 := args[0], args[i+1]
|
|
if d1.Kind() == types.KindInt64 && d1.Kind() == d2.Kind() {
|
|
return d1.GetInt64() < d2.GetInt64()
|
|
}
|
|
if d1.Kind() == types.KindUint64 && d1.Kind() == d2.Kind() {
|
|
return d1.GetUint64() < d2.GetUint64()
|
|
}
|
|
if d1.Kind() == types.KindInt64 && d2.Kind() == types.KindUint64 {
|
|
return d1.GetInt64() < 0 || d1.GetUint64() < d2.GetUint64()
|
|
}
|
|
if d1.Kind() == types.KindUint64 && d2.Kind() == types.KindInt64 {
|
|
return d2.GetInt64() > 0 && d1.GetUint64() < d2.GetUint64()
|
|
}
|
|
v1, _ := d1.ToFloat64(sc)
|
|
v2, _ := d2.ToFloat64(sc)
|
|
return v1 < v2
|
|
})
|
|
d.SetInt64(int64(idx))
|
|
|
|
return
|
|
}
|
|
|
|
type compareFunctionClass struct {
|
|
baseFunctionClass
|
|
|
|
op opcode.Op
|
|
}
|
|
|
|
func (c *compareFunctionClass) getFunction(args []Expression, ctx context.Context) (builtinFunc, error) {
|
|
return &builtinCompareSig{newBaseBuiltinFunc(args, ctx), c.op}, errors.Trace(c.verifyArgs(args))
|
|
}
|
|
|
|
type builtinCompareSig struct {
|
|
baseBuiltinFunc
|
|
|
|
op opcode.Op
|
|
}
|
|
|
|
func (s *builtinCompareSig) eval(row []types.Datum) (d types.Datum, err error) {
|
|
args, err := s.evalArgs(row)
|
|
if err != nil {
|
|
return types.Datum{}, errors.Trace(err)
|
|
}
|
|
sc := s.ctx.GetSessionVars().StmtCtx
|
|
var a, b = args[0], args[1]
|
|
if s.op != opcode.NullEQ {
|
|
a, b, err = types.CoerceDatum(sc, a, b)
|
|
if err != nil {
|
|
return d, errors.Trace(err)
|
|
}
|
|
}
|
|
if a.IsNull() || b.IsNull() {
|
|
// For <=>, if a and b are both nil, return true.
|
|
// If a or b is nil, return false.
|
|
if s.op == opcode.NullEQ {
|
|
if a.IsNull() && b.IsNull() {
|
|
d.SetInt64(oneI64)
|
|
} else {
|
|
d.SetInt64(zeroI64)
|
|
}
|
|
}
|
|
return
|
|
}
|
|
|
|
n, err := a.CompareDatum(sc, b)
|
|
if err != nil {
|
|
return d, errors.Trace(err)
|
|
}
|
|
var result bool
|
|
switch s.op {
|
|
case opcode.LT:
|
|
result = n < 0
|
|
case opcode.LE:
|
|
result = n <= 0
|
|
case opcode.EQ, opcode.NullEQ:
|
|
result = n == 0
|
|
case opcode.GT:
|
|
result = n > 0
|
|
case opcode.GE:
|
|
result = n >= 0
|
|
case opcode.NE:
|
|
result = n != 0
|
|
default:
|
|
return d, errInvalidOperation.Gen("invalid op %v in comparison operation", s.op)
|
|
}
|
|
if result {
|
|
d.SetInt64(oneI64)
|
|
} else {
|
|
d.SetInt64(zeroI64)
|
|
}
|
|
return
|
|
}
|