forked from pingcap/tidb
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathstatement_context_test.go
125 lines (106 loc) · 4.88 KB
/
statement_context_test.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
// Copyright 2016 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 executor_test
import (
"fmt"
"testing"
"unicode/utf8"
"github.com/pingcap/tidb/config"
"github.com/pingcap/tidb/errno"
"github.com/pingcap/tidb/testkit"
"github.com/stretchr/testify/require"
)
const (
strictModeSQL = "set sql_mode = 'STRICT_TRANS_TABLES'"
nonStrictModeSQL = "set sql_mode = ''"
)
func TestStatementContext(t *testing.T) {
store := testkit.CreateMockStore(t)
tk := testkit.NewTestKit(t, store)
tk.MustExec("use test")
tk.MustExec("create table sc (a int)")
tk.MustExec("insert sc values (1), (2)")
tk.MustExec(strictModeSQL)
tk.MustQuery("select * from sc where a > cast(1.1 as decimal)").Check(testkit.Rows("2"))
tk.MustExec("update sc set a = 4 where a > cast(1.1 as decimal)")
tk.MustExec(nonStrictModeSQL)
tk.MustExec("update sc set a = 3 where a > cast(1.1 as decimal)")
tk.MustQuery("select * from sc").Check(testkit.Rows("1", "3"))
tk.MustExec(strictModeSQL)
tk.MustExec("delete from sc")
tk.MustExec("insert sc values ('1.8'+1)")
tk.MustQuery("select * from sc").Check(testkit.Rows("3"))
// Handle coprocessor flags, '1x' is an invalid int.
// UPDATE and DELETE do select request first which is handled by coprocessor.
// In strict mode we expect error.
tk.MustExecToErr("update sc set a = 4 where a > '1x'")
tk.MustExecToErr("delete from sc where a < '1x'")
tk.MustQuery("select * from sc where a > '1x'").Check(testkit.Rows("3"))
// Non-strict mode never returns error.
tk.MustExec(nonStrictModeSQL)
tk.MustExec("update sc set a = 4 where a > '1x'")
tk.MustExec("delete from sc where a < '1x'")
tk.MustQuery("select * from sc where a > '1x'").Check(testkit.Rows("4"))
// Test invalid UTF8
tk.MustExec("create table sc2 (a varchar(255))")
// Insert an invalid UTF8
tk.MustExec("insert sc2 values (unhex('4040ffff'))")
require.Greater(t, tk.Session().GetSessionVars().StmtCtx.WarningCount(), uint16(0))
tk.MustQuery("select * from sc2").Check(testkit.Rows("@@"))
tk.MustExec(strictModeSQL)
tk.MustGetErrCode("insert sc2 values (unhex('4040ffff'))", errno.ErrTruncatedWrongValueForField)
tk.MustExec("set @@tidb_skip_utf8_check = '1'")
tk.MustExec("insert sc2 values (unhex('4040ffff'))")
tk.MustQuery("select length(a) from sc2").Check(testkit.Rows("2", "4"))
tk.MustExec("set @@tidb_skip_utf8_check = '0'")
runeErrStr := string(utf8.RuneError)
tk.MustExec(fmt.Sprintf("insert sc2 values ('%s')", runeErrStr))
// Test invalid ASCII
tk.MustExec("create table sc3 (a varchar(255)) charset ascii")
tk.MustExec(nonStrictModeSQL)
tk.MustExec("insert sc3 values (unhex('4040ffff'))")
require.Greater(t, tk.Session().GetSessionVars().StmtCtx.WarningCount(), uint16(0))
tk.MustQuery("select * from sc3").Check(testkit.Rows("@@"))
tk.MustExec(strictModeSQL)
tk.MustGetErrCode("insert sc3 values (unhex('4040ffff'))", errno.ErrTruncatedWrongValueForField)
tk.MustExec("set @@tidb_skip_ascii_check = '1'")
tk.MustExec("insert sc3 values (unhex('4040ffff'))")
tk.MustQuery("select length(a) from sc3").Check(testkit.Rows("2", "4"))
// no placeholder in ASCII, so just insert '@@'...
tk.MustExec("set @@tidb_skip_ascii_check = '0'")
tk.MustExec("insert sc3 values (unhex('4040'))")
// Test non-BMP characters.
tk.MustExec(nonStrictModeSQL)
tk.MustExec("drop table if exists t1")
tk.MustExec("create table t1(a varchar(100) charset utf8);")
defer tk.MustExec("drop table if exists t1")
tk.MustExec("insert t1 values (unhex('f09f8c80'))")
require.Greater(t, tk.Session().GetSessionVars().StmtCtx.WarningCount(), uint16(0))
tk.MustQuery("select * from t1").Check(testkit.Rows(""))
tk.MustExec("insert t1 values (unhex('4040f09f8c80'))")
require.Greater(t, tk.Session().GetSessionVars().StmtCtx.WarningCount(), uint16(0))
tk.MustQuery("select * from t1").Check(testkit.Rows("", "@@"))
tk.MustQuery("select length(a) from t1").Check(testkit.Rows("0", "2"))
tk.MustExec(strictModeSQL)
tk.MustGetErrCode("insert t1 values (unhex('f09f8c80'))", errno.ErrTruncatedWrongValueForField)
tk.MustGetErrCode("insert t1 values (unhex('F0A48BAE'))", errno.ErrTruncatedWrongValueForField)
config.UpdateGlobal(func(conf *config.Config) {
conf.Instance.CheckMb4ValueInUTF8.Store(false)
})
tk.MustExec("insert t1 values (unhex('f09f8c80'))")
config.UpdateGlobal(func(conf *config.Config) {
conf.Instance.CheckMb4ValueInUTF8.Store(true)
})
tk.MustExecToErr("insert t1 values (unhex('F0A48BAE'))")
}