forked from pingcap/tidb
-
Notifications
You must be signed in to change notification settings - Fork 2
/
builtin_like.go
146 lines (126 loc) · 4.17 KB
/
builtin_like.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
// Copyright 2015 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 (
"regexp"
"github.com/juju/errors"
"github.com/pingcap/tidb/sessionctx"
"github.com/pingcap/tidb/types"
"github.com/pingcap/tidb/util/stringutil"
"github.com/pingcap/tipb/go-tipb"
)
var (
_ functionClass = &likeFunctionClass{}
_ functionClass = ®expFunctionClass{}
)
var (
_ builtinFunc = &builtinLikeSig{}
_ builtinFunc = &builtinRegexpBinarySig{}
_ builtinFunc = &builtinRegexpSig{}
)
type likeFunctionClass struct {
baseFunctionClass
}
func (c *likeFunctionClass) getFunction(ctx sessionctx.Context, args []Expression) (builtinFunc, error) {
if err := c.verifyArgs(args); err != nil {
return nil, errors.Trace(err)
}
argTp := []types.EvalType{types.ETString, types.ETString, types.ETInt}
bf := newBaseBuiltinFuncWithTp(ctx, args, types.ETInt, argTp...)
bf.tp.Flen = 1
sig := &builtinLikeSig{bf}
sig.setPbCode(tipb.ScalarFuncSig_LikeSig)
return sig, nil
}
type builtinLikeSig struct {
baseBuiltinFunc
}
// evalInt evals a builtinLikeSig.
// See https://dev.mysql.com/doc/refman/5.7/en/string-comparison-functions.html#operator_like
// NOTE: Currently tikv's like function is case sensitive, so we keep its behavior here.
func (b *builtinLikeSig) evalInt(row types.Row) (int64, bool, error) {
valStr, isNull, err := b.args[0].EvalString(b.ctx, row)
if isNull || err != nil {
return 0, isNull, errors.Trace(err)
}
// TODO: We don't need to compile pattern if it has been compiled or it is static.
patternStr, isNull, err := b.args[1].EvalString(b.ctx, row)
if isNull || err != nil {
return 0, isNull, errors.Trace(err)
}
val, isNull, err := b.args[2].EvalInt(b.ctx, row)
if isNull || err != nil {
return 0, isNull, errors.Trace(err)
}
escape := byte(val)
patChars, patTypes := stringutil.CompilePattern(patternStr, escape)
match := stringutil.DoMatch(valStr, patChars, patTypes)
return boolToInt64(match), false, nil
}
type regexpFunctionClass struct {
baseFunctionClass
}
func (c *regexpFunctionClass) getFunction(ctx sessionctx.Context, args []Expression) (builtinFunc, error) {
if err := c.verifyArgs(args); err != nil {
return nil, errors.Trace(err)
}
bf := newBaseBuiltinFuncWithTp(ctx, args, types.ETInt, types.ETString, types.ETString)
bf.tp.Flen = 1
var sig builtinFunc
if types.IsBinaryStr(args[0].GetType()) {
sig = &builtinRegexpBinarySig{bf}
} else {
sig = &builtinRegexpSig{bf}
}
return sig, nil
}
type builtinRegexpBinarySig struct {
baseBuiltinFunc
}
func (b *builtinRegexpBinarySig) evalInt(row types.Row) (int64, bool, error) {
expr, isNull, err := b.args[0].EvalString(b.ctx, row)
if isNull || err != nil {
return 0, true, errors.Trace(err)
}
pat, isNull, err := b.args[1].EvalString(b.ctx, row)
if isNull || err != nil {
return 0, true, errors.Trace(err)
}
// TODO: We don't need to compile pattern if it has been compiled or it is static.
re, err := regexp.Compile(pat)
if err != nil {
return 0, true, errors.Trace(err)
}
return boolToInt64(re.MatchString(expr)), false, nil
}
type builtinRegexpSig struct {
baseBuiltinFunc
}
// evalInt evals `expr REGEXP pat`, or `expr RLIKE pat`.
// See https://dev.mysql.com/doc/refman/5.7/en/regexp.html#operator_regexp
func (b *builtinRegexpSig) evalInt(row types.Row) (int64, bool, error) {
expr, isNull, err := b.args[0].EvalString(b.ctx, row)
if isNull || err != nil {
return 0, true, errors.Trace(err)
}
pat, isNull, err := b.args[1].EvalString(b.ctx, row)
if isNull || err != nil {
return 0, true, errors.Trace(err)
}
// TODO: We don't need to compile pattern if it has been compiled or it is static.
re, err := regexp.Compile("(?i)" + pat)
if err != nil {
return 0, true, errors.Trace(err)
}
return boolToInt64(re.MatchString(expr)), false, nil
}