Skip to content

Commit 517b9c4

Browse files
committed
address comments
1 parent ea1a62c commit 517b9c4

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

expression/integration_test/integration_test.go

Lines changed: 2 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7814,7 +7814,7 @@ func TestIfFunctionWithNull(t *testing.T) {
78147814
testkit.Rows("20000 35100"))
78157815
}
78167816

7817-
func TestIssue41733(t *testing.T) {
7817+
func TestIssue41733AndIssue45410(t *testing.T) {
78187818
store := testkit.CreateMockStore(t)
78197819
tk := testkit.NewTestKit(t, store)
78207820
tk.MustExec("create database testIssue41733")
@@ -7845,11 +7845,8 @@ func TestIssue41733(t *testing.T) {
78457845
tk.MustExec("INSERT IGNORE INTO t_big(c0) VALUES (1E20)")
78467846
tk.MustQuery("show warnings").Check(testkit.Rows("Warning 1264 Out of range value for column 'c0' at row 1"))
78477847
tk.MustQuery("select * from t_big;").Check(testkit.Rows("18446744073709551615"))
7848-
}
78497848

7850-
func TestIssue45410(t *testing.T) {
7851-
store := testkit.CreateMockStore(t)
7852-
tk := testkit.NewTestKit(t, store)
7849+
// Issue 45410
78537850
tk.MustExec("create database testIssue45410")
78547851
defer tk.MustExec("drop database testIssue45410")
78557852
tk.MustExec("use testIssue45410")

0 commit comments

Comments
 (0)