Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

expression, parser: fix issue #3691, cast compatibility #3894

Merged
merged 48 commits into from
Aug 1, 2017
Merged
Show file tree
Hide file tree
Changes from 38 commits
Commits
Show all changes
48 commits
Select commit Hold shift + click to select a range
7762b8b
expression: handle int builtinUnaryOpSig overflow
winkyao Jul 17, 2017
f87e0af
expression: fix #3762, signed integer overflow handle in minus unary …
winkyao Jul 17, 2017
465dd1b
expression: fix #3762, add builtin_op_test.go, some builtin test cases
winkyao Jul 17, 2017
17f1e5f
*: tiny cleanup
winkyao Jul 17, 2017
5589c9e
expression: fix #3691, builtin CAST func compatibilities, partially s…
winkyao Jul 17, 2017
c61fea1
Squashed commit of the following:
winkyao Jul 17, 2017
c8f218f
Merge branch 'master' of https://github.com/pingcap/tidb into winkyao…
winkyao Jul 17, 2017
1d15330
expression: set the correct unary minus function ScalarFunction.RetType
winkyao Jul 17, 2017
4319ade
Merge branch 'winkyao/fix_issue_3762' into winkyao/cast_compability
winkyao Jul 17, 2017
a803f9d
expression: rewrite unary minus builtin function to handle overflow.
winkyao Jul 19, 2017
d6e6c25
plan: fix popRowArg bug: when get expression.Constatn and getRowLen i…
winkyao Jul 20, 2017
ae342fc
*:git stash
winkyao Jul 24, 2017
869e1f6
Merge branch 'master' of https://github.com/pingcap/tidb into winkyao…
winkyao Jul 25, 2017
b305a4f
expression: base #3868 pr, and rewrite builtin function unary minus t…
winkyao Jul 25, 2017
bedd270
expression: refactor builtin unary minus function
winkyao Jul 25, 2017
0e5de09
expression: tiny refactor
winkyao Jul 25, 2017
4045075
expression: tiny cleanup
winkyao Jul 25, 2017
636170d
expression: cleanup
winkyao Jul 25, 2017
33bf09c
expresion: cleanup
winkyao Jul 25, 2017
eb58c48
expression: tiny cleanup
winkyao Jul 25, 2017
b199772
Merge branch 'master' of https://github.com/pingcap/tidb into winkyao…
winkyao Jul 25, 2017
6005a18
Merge branch 'master' into winkyao/fix_issue_3762
winkyao Jul 26, 2017
e2aa622
expression: add some comment
winkyao Jul 26, 2017
d0395bf
Merge branch 'winkyao/fix_issue_3762' of https://github.com/pingcap/t…
winkyao Jul 26, 2017
ffc0df7
Merge branch 'master' into winkyao/fix_issue_3762
winkyao Jul 26, 2017
27202d6
Merge branch 'master' of https://github.com/pingcap/tidb into winkyao…
winkyao Jul 26, 2017
03dc0e5
Merge branch 'winkyao/fix_issue_3762' of https://github.com/pingcap/t…
winkyao Jul 26, 2017
7f01b42
expression: adjust commet
winkyao Jul 26, 2017
14e9711
Merge branch 'winkyao/fix_issue_3762' into winkyao/cast_compability
winkyao Jul 26, 2017
19b2fd9
Merge branch 'master' of https://github.com/pingcap/tidb into winkyao…
winkyao Jul 26, 2017
8f32c92
expression: add more test cases, and make the code more readable
winkyao Jul 26, 2017
197ec13
types,expression,executor: fix #3691 cast compabilities
winkyao Jul 27, 2017
151b0fe
Merge branch 'master' of https://github.com/pingcap/tidb into winkyao…
winkyao Jul 27, 2017
c61275c
Merge branch 'master' into winkyao/cast_compability
winkyao Jul 27, 2017
e3e5f94
Merge branch 'master' of https://github.com/pingcap/tidb into winkyao…
winkyao Jul 27, 2017
684c314
expression: tiny cleanup
winkyao Jul 27, 2017
4edca6b
Merge branch 'winkyao/cast_compability' of https://github.com/pingcap…
winkyao Jul 27, 2017
028658d
executor: add test case
winkyao Jul 28, 2017
07c31ac
*: cleanup
winkyao Jul 29, 2017
bbe1260
Merge branch 'master' into winkyao/cast_compability
winkyao Jul 29, 2017
b51e4f1
*: refactor, add parser test case
winkyao Jul 31, 2017
8d98e4d
Merge branch 'winkyao/cast_compability' of https://github.com/pingcap…
winkyao Jul 31, 2017
68f0a1d
Merge branch 'master' of https://github.com/pingcap/tidb into winkyao…
winkyao Jul 31, 2017
266971b
Merge branch 'master' into winkyao/cast_compability
winkyao Aug 1, 2017
1699498
Merge branch 'master' of https://github.com/pingcap/tidb into winkyao…
winkyao Aug 1, 2017
55d25a1
expression: cleanup
winkyao Aug 1, 2017
8ac311c
Merge branch 'winkyao/cast_compability' of https://github.com/pingcap…
winkyao Aug 1, 2017
4ff23cd
Merge branch 'master' into winkyao/cast_compability
XuHuaiyu Aug 1, 2017
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
73 changes: 72 additions & 1 deletion executor/executor_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -552,7 +552,9 @@ func (s *testSuite) TestUnion(c *C) {
tk.MustExec("CREATE TABLE t (a DECIMAL(4,2))")
tk.MustExec("INSERT INTO t VALUE(12.34)")
r = tk.MustQuery("SELECT 1 AS c UNION select a FROM t")
r.Check(testkit.Rows("1.00", "12.34"))
r.Sort().Check(testkit.Rows("1.00", "12.34"))

// #issue3771
r = tk.MustQuery("SELECT 'a' UNION SELECT CONCAT('a', -4)")
r.Sort().Check(testkit.Rows("a", "a-4"))
Expand Down Expand Up @@ -1097,6 +1099,75 @@ func (s *testSuite) TestBuiltin(c *C) {
result = tk.MustQuery("select cast(-1 as unsigned)")
result.Check(testkit.Rows("18446744073709551615"))

// Fix issue #3691, cast compabilities.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

s/ compabilities/ compatibility

result = tk.MustQuery("select cast('18446744073709551616' as unsigned);")
result.Check(testkit.Rows("18446744073709551615"))
result = tk.MustQuery("select cast('18446744073709551616' as signed);")
result.Check(testkit.Rows("-1"))
result = tk.MustQuery("select cast('9223372036854775808' as signed);")
result.Check(testkit.Rows("-9223372036854775808"))
result = tk.MustQuery("select cast('9223372036854775809' as signed);")
result.Check(testkit.Rows("-9223372036854775807"))
result = tk.MustQuery("select cast('9223372036854775807' as signed);")
result.Check(testkit.Rows("9223372036854775807"))
result = tk.MustQuery("select cast('18446744073709551615' as signed);")
result.Check(testkit.Rows("-1"))
result = tk.MustQuery("select cast('18446744073709551614' as signed);")
result.Check(testkit.Rows("-2"))
result = tk.MustQuery("select cast(18446744073709551615 as unsigned);")
result.Check(testkit.Rows("18446744073709551615"))
result = tk.MustQuery("select cast(18446744073709551616 as unsigned);")
result.Check(testkit.Rows("18446744073709551615"))
result = tk.MustQuery("select cast(18446744073709551616 as signed);")
result.Check(testkit.Rows("9223372036854775807"))
result = tk.MustQuery("select cast(18446744073709551617 as signed);")
result.Check(testkit.Rows("9223372036854775807"))
result = tk.MustQuery("select cast(18446744073709551615 as signed);")
result.Check(testkit.Rows("-1"))
result = tk.MustQuery("select cast(18446744073709551614 as signed);")
result.Check(testkit.Rows("-2"))
result = tk.MustQuery("select cast(-18446744073709551616 as signed);")
result.Check(testkit.Rows("-9223372036854775808"))
result = tk.MustQuery("select cast(18446744073709551614.9 as unsigned);") // Round up
result.Check(testkit.Rows("18446744073709551615"))
result = tk.MustQuery("select cast(18446744073709551614.4 as unsigned);") // Round down
result.Check(testkit.Rows("18446744073709551614"))
result = tk.MustQuery("select cast(-9223372036854775809 as signed);")
result.Check(testkit.Rows("-9223372036854775808"))
result = tk.MustQuery("select cast(-9223372036854775809 as unsigned);")
result.Check(testkit.Rows("0"))
result = tk.MustQuery("select cast(-9223372036854775808 as unsigned);")
result.Check(testkit.Rows("9223372036854775808"))
result = tk.MustQuery("select cast('-9223372036854775809' as unsigned);")
result.Check(testkit.Rows("9223372036854775808"))
result = tk.MustQuery("select cast('-9223372036854775807' as unsigned);")
result.Check(testkit.Rows("9223372036854775809"))
result = tk.MustQuery("select cast('-2' as unsigned);")
result.Check(testkit.Rows("18446744073709551614"))
result = tk.MustQuery("select cast(cast(1-2 as unsigned) as signed integer);")
result.Check(testkit.Rows("-1"))
result = tk.MustQuery("select cast(1 as signed int)")
result.Check(testkit.Rows("1"))

// test cast time as decimal overflow
tk.MustExec("drop table if exists t1")
tk.MustExec("create table t1(s1 time);")
tk.MustExec("insert into t1 values('11:11:11');")
result = tk.MustQuery("select cast(s1 as decimal(7, 2)) from t1;")
result.Check(testkit.Rows("99999.99"))
result = tk.MustQuery("select cast(s1 as decimal(8, 2)) from t1;")
result.Check(testkit.Rows("111111.00"))
_, err := tk.Exec("insert into t1 values(cast('111111.00' as decimal(7, 2)));")
c.Assert(err, NotNil)

result = tk.MustQuery(`select CAST(0x8fffffffffffffff as signed) a,
CAST(0xfffffffffffffffe as signed) b,
CAST(0xffffffffffffffff as unsigned) c;`)
result.Check(testkit.Rows("-8070450532247928833 -2 18446744073709551615"))

result = tk.MustQuery(`select cast("1:2:3" as TIME) = "1:02:03"`)
result.Check(testkit.Rows("0"))

// fixed issue #3471
tk.MustExec("drop table if exists t")
tk.MustExec("create table t(a time(6));")
Expand All @@ -1114,7 +1185,7 @@ func (s *testSuite) TestBuiltin(c *C) {

tk.MustExec("drop table if exists t")
tk.MustExec("create table t(a bigint(30));")
_, err := tk.Exec("insert into t values(-9223372036854775809)")
_, err = tk.Exec("insert into t values(-9223372036854775809)")
c.Assert(err, NotNil)

// test unhex and hex
Expand Down
19 changes: 13 additions & 6 deletions executor/prepared.go
Original file line number Diff line number Diff line change
Expand Up @@ -333,34 +333,41 @@ func ResetStmtCtx(ctx context.Context, s ast.StmtNode) {
sessVars := ctx.GetSessionVars()
sc := new(variable.StatementContext)
sc.TimeZone = sessVars.GetTimeZone()

switch s.(type) {
case *ast.UpdateStmt, *ast.DeleteStmt:
sc.IgnoreTruncate = false
sc.IgnoreOverflow = false
sc.OverflowAsWarning = false
sc.TruncateAsWarning = !sessVars.StrictSQLMode
sc.InUpdateOrDeleteStmt = true
case *ast.InsertStmt:
sc.IgnoreTruncate = false
sc.IgnoreOverflow = false
sc.TruncateAsWarning = !sessVars.StrictSQLMode
sc.InInsertStmt = true
case *ast.CreateTableStmt, *ast.AlterTableStmt:
// Make sure the sql_mode is strict when checking column default value.
sc.IgnoreTruncate = false
sc.IgnoreOverflow = false
sc.OverflowAsWarning = false
sc.TruncateAsWarning = false
case *ast.LoadDataStmt:
sc.IgnoreTruncate = false
sc.IgnoreOverflow = false
sc.OverflowAsWarning = false
sc.TruncateAsWarning = !sessVars.StrictSQLMode
case *ast.SelectStmt:
sc.IgnoreOverflow = true
sc.InSelectStmt = true

// see https://dev.mysql.com/doc/refman/5.7/en/sql-mode.html#sql-mode-strict
// said "For statements such as SELECT that do not change data, invalid values
// generate a warning in strict mode, not an error."
// and and https://dev.mysql.com/doc/refman/5.7/en/out-of-range-and-overflow.html
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

and and ?

sc.OverflowAsWarning = true

// Return warning for truncate error in selection.
sc.IgnoreTruncate = false
sc.TruncateAsWarning = true
default:
sc.IgnoreTruncate = true
sc.IgnoreOverflow = false
sc.OverflowAsWarning = false
if show, ok := s.(*ast.ShowStmt); ok {
if show.Tp == ast.ShowWarnings {
sc.InShowWarning = true
Expand Down
76 changes: 60 additions & 16 deletions expression/builtin_cast.go
Original file line number Diff line number Diff line change
Expand Up @@ -23,12 +23,16 @@ package expression

import (
"strconv"
"strings"

Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

remove this empty line.

"math"
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

move math to line 25

Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Why make check ignore this?


"github.com/juju/errors"
"github.com/pingcap/tidb/ast"
"github.com/pingcap/tidb/context"
"github.com/pingcap/tidb/model"
"github.com/pingcap/tidb/mysql"
"github.com/pingcap/tidb/terror"
"github.com/pingcap/tidb/util/charset"
"github.com/pingcap/tidb/util/types"
)
Expand Down Expand Up @@ -542,22 +546,24 @@ func (b *builtinCastDecimalAsIntSig) evalInt(row []types.Datum) (res int64, isNu
if isNull || err != nil {
return res, isNull, errors.Trace(err)
}

// despite of unsigned or signed, Round is needed
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Round is needed for both unsigned and signed.

var to types.MyDecimal
val.Round(&to, 0, types.ModeHalfEven)

if mysql.HasUnsignedFlag(b.tp.Flag) {
var (
floatVal float64
uintRes uint64
)
floatVal, err = val.ToFloat64()
if err != nil {
return res, false, errors.Trace(err)
}
uintRes, err = types.ConvertFloatToUint(sc, floatVal, types.UnsignedUpperBound[mysql.TypeLonglong], mysql.TypeDouble)
res = int64(uintRes)
var ures uint64
ures, err = to.ToUint()
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

The old name uintRes may be more readable.

res = int64(ures)
} else {
var to types.MyDecimal
val.Round(&to, 0, types.ModeHalfEven)
res, err = to.ToInt()
}

if terror.ErrorEqual(err, types.ErrOverflow) {
warnErr := types.ErrTruncatedWrongVal.GenByArgs("DECIMAL", val)
err = sc.HandleOverflow(err, warnErr)
}

return res, false, errors.Trace(err)
}

Expand Down Expand Up @@ -636,6 +642,27 @@ type builtinCastStringAsIntSig struct {
baseIntBuiltinFunc
}

func (b *builtinCastStringAsIntSig) handleOverflow(origRes int64, origStr string, origErr error, isNegative bool) (res int64, err error) {
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

may add a comment for this.

res, err = origRes, origErr
if err == nil {
return
}

sc := b.getCtx().GetSessionVars().StmtCtx

if sc.InSelectStmt && terror.ErrorEqual(origErr, types.ErrOverflow) {
if isNegative {
res = math.MinInt64
} else {
uval := uint64(math.MaxUint64)
res = int64(uval)
}
warnErr := types.ErrTruncatedWrongVal.GenByArgs("INTEGER", origStr)
err = sc.HandleOverflow(origErr, warnErr)
}
return
}

func (b *builtinCastStringAsIntSig) evalInt(row []types.Datum) (res int64, isNull bool, err error) {
sc := b.getCtx().GetSessionVars().StmtCtx
if IsHybridType(b.args[0]) {
Expand All @@ -645,13 +672,30 @@ func (b *builtinCastStringAsIntSig) evalInt(row []types.Datum) (res int64, isNul
if isNull || err != nil {
return res, isNull, errors.Trace(err)
}
if mysql.HasUnsignedFlag(b.tp.Flag) {
var ures uint64

val = strings.TrimSpace(val)
isNegative := false
if len(val) > 1 && val[0] == '-' { // negative number
isNegative = true
}

var ures uint64
if isNegative {
res, err = types.StrToInt(sc, val)
if err == nil {
// If overflow, don't append this warnings
sc.AppendWarning(types.ErrCastNegIntToUnsigned)
}
} else {
ures, err = types.StrToUint(sc, val)
res = int64(ures)
} else {
res, err = types.StrToInt(sc, val)

if err == nil && !mysql.HasUnsignedFlag(b.tp.Flag) && ures > uint64(math.MaxInt64) {
sc.AppendWarning(types.ErrCastSignedOverflow)
}
}

res, err = b.handleOverflow(res, val, err, isNegative)
return res, false, errors.Trace(err)
}

Expand Down
85 changes: 85 additions & 0 deletions expression/builtin_cast_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -21,6 +21,7 @@ import (

. "github.com/pingcap/check"
"github.com/pingcap/tidb/mysql"
"github.com/pingcap/tidb/terror"
"github.com/pingcap/tidb/util/charset"
"github.com/pingcap/tidb/util/testleak"
"github.com/pingcap/tidb/util/types"
Expand Down Expand Up @@ -75,6 +76,90 @@ func (s *testEvaluatorSuite) TestCast(c *C) {
c.Assert(len(res.GetString()), Equals, 5)
c.Assert(res.GetString(), Equals, string([]byte{'a', 0x00, 0x00, 0x00, 0x00}))

origSc := sc
sc.InSelectStmt = true
sc.OverflowAsWarning = true

// cast('18446744073709551616' as unsigned);
tp1 := types.NewFieldType(mysql.TypeLonglong)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

will this be more readable?

tp1 := &types.FieldType{
    Tp:
    Flag:
    Charset:
    ....
}

tp1.Flag |= mysql.UnsignedFlag
tp1.Flen = mysql.MaxIntWidth
tp1.Charset = charset.CharsetBin
tp1.Collate = charset.CollationBin
tp1.Flag |= mysql.BinaryFlag
f = NewCastFunc(tp1, &Constant{Value: types.NewDatum("18446744073709551616"), RetType: types.NewFieldType(mysql.TypeString)}, ctx)
res, err = f.Eval(nil)
c.Assert(err, IsNil)
c.Assert(res.GetUint64() == math.MaxUint64, IsTrue)

warnings := sc.GetWarnings()
lastWarn := warnings[len(warnings)-1]
c.Assert(terror.ErrorEqual(types.ErrTruncatedWrongVal, lastWarn), IsTrue)

f = NewCastFunc(tp1, &Constant{Value: types.NewDatum("-1"), RetType: types.NewFieldType(mysql.TypeString)}, ctx)
res, err = f.Eval(nil)
c.Assert(err, IsNil)
c.Assert(res.GetUint64() == 18446744073709551615, IsTrue)

warnings = sc.GetWarnings()
lastWarn = warnings[len(warnings)-1]
c.Assert(terror.ErrorEqual(types.ErrCastNegIntToUnsigned, lastWarn), IsTrue)

f = NewCastFunc(tp1, &Constant{Value: types.NewDatum("-18446744073709551616"), RetType: types.NewFieldType(mysql.TypeString)}, ctx)
res, err = f.Eval(nil)
c.Assert(err, IsNil)
t := math.MinInt64
// 9223372036854775808
c.Assert(res.GetUint64() == uint64(t), IsTrue)

warnings = sc.GetWarnings()
lastWarn = warnings[len(warnings)-1]
c.Assert(terror.ErrorEqual(types.ErrTruncatedWrongVal, lastWarn), IsTrue)

// cast('18446744073709551616' as signed);
mask := ^mysql.UnsignedFlag
tp1.Flag &= uint(mask)
f = NewCastFunc(tp1, &Constant{Value: types.NewDatum("18446744073709551616"), RetType: types.NewFieldType(mysql.TypeString)}, ctx)
res, err = f.Eval(nil)
c.Assert(err, IsNil)
c.Check(res.GetInt64(), Equals, int64(-1))

warnings = sc.GetWarnings()
lastWarn = warnings[len(warnings)-1]
c.Assert(terror.ErrorEqual(types.ErrTruncatedWrongVal, lastWarn), IsTrue)

// cast('18446744073709551614' as signed);
f = NewCastFunc(tp1, &Constant{Value: types.NewDatum("18446744073709551614"), RetType: types.NewFieldType(mysql.TypeString)}, ctx)
res, err = f.Eval(nil)
c.Assert(err, IsNil)
c.Check(res.GetInt64(), Equals, int64(-2))

warnings = sc.GetWarnings()
lastWarn = warnings[len(warnings)-1]
c.Assert(terror.ErrorEqual(types.ErrCastSignedOverflow, lastWarn), IsTrue)

// create table t1(s1 time);
// insert into t1 values('11:11:11');
// select cast(s1 as decimal(7, 2)) from t1;
tpDecimal := types.NewFieldType(mysql.TypeNewDecimal)
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

ditto

tpDecimal.Flag |= mysql.UnsignedFlag
tpDecimal.Charset = charset.CharsetBin
tpDecimal.Collate = charset.CollationBin
tpDecimal.Flag |= mysql.BinaryFlag
tpDecimal.Flen = 7
tpDecimal.Decimal = 2
f = NewCastFunc(tpDecimal, &Constant{Value: timeDatum, RetType: types.NewFieldType(mysql.TypeDatetime)}, ctx)
res, err = f.Eval(nil)
c.Assert(err, IsNil)
resDecimal := new(types.MyDecimal)
resDecimal.FromString([]byte("99999.99"))
c.Assert(res.GetMysqlDecimal().Compare(resDecimal), Equals, 0)

warnings = sc.GetWarnings()
lastWarn = warnings[len(warnings)-1]
c.Assert(terror.ErrorEqual(types.ErrOverflow, lastWarn), IsTrue)
sc = origSc

// cast(bad_string as decimal)
for _, s := range []string{"hello", ""} {
f = NewCastFunc(tp, &Constant{Value: types.NewDatum(s), RetType: types.NewFieldType(mysql.TypeDecimal)}, ctx)
Expand Down
2 changes: 1 addition & 1 deletion expression/builtin_op.go
Original file line number Diff line number Diff line change
Expand Up @@ -488,7 +488,7 @@ func (b *unaryMinusFunctionClass) typeInfer(argExpr Expression, ctx context.Cont
sc := ctx.GetSessionVars().StmtCtx
overflow := false
// TODO: Handle float overflow.
if arg, ok := argExpr.(*Constant); sc.IgnoreOverflow && ok &&
if arg, ok := argExpr.(*Constant); sc.InSelectStmt && ok &&
arg.GetTypeClass() == types.ClassInt {
overflow = b.handleIntOverflow(arg)
if overflow {
Expand Down
6 changes: 3 additions & 3 deletions expression/builtin_op_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -37,10 +37,10 @@ func (s *testEvaluatorSuite) TestUnary(c *C) {
{int64(math.MinInt64), "9223372036854775808", true, false}, // --9223372036854775808
}
sc := s.ctx.GetSessionVars().StmtCtx
origin := sc.IgnoreOverflow
sc.IgnoreOverflow = true
origin := sc.InSelectStmt
sc.InSelectStmt = true
defer func() {
sc.IgnoreOverflow = origin
sc.InSelectStmt = origin
}()

for _, t := range cases {
Expand Down
1 change: 0 additions & 1 deletion expression/builtin_time.go
Original file line number Diff line number Diff line change
Expand Up @@ -323,7 +323,6 @@ func (b *builtinTimeDiffSig) eval(row []types.Datum) (d types.Datum, err error)
if err != nil {
return d, errors.Trace(err)
}

t := t1.Sub(&t2)
d.SetMysqlDuration(t)
return
Expand Down
1 change: 1 addition & 0 deletions expression/typeinferer.go
Original file line number Diff line number Diff line change
Expand Up @@ -599,6 +599,7 @@ func IsHybridType(expr Expression) bool {
case mysql.TypeEnum, mysql.TypeBit, mysql.TypeSet:
return true
}

// For a constant, the field type will be inferred as `VARCHAR` when the kind of it is `HEX` or `BIT`.
if con, ok := expr.(*Constant); ok {
switch con.Value.Kind() {
Expand Down
Loading