Skip to content

Commit 9874c6e

Browse files
committed
clean up
1 parent c9d633d commit 9874c6e

File tree

2 files changed

+8
-2
lines changed

2 files changed

+8
-2
lines changed

enginetest/queries/script_queries.go

Lines changed: 8 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1232,34 +1232,42 @@ FROM task_instance INNER JOIN job ON job.id = task_instance.queued_by_job_id INN
12321232
ExpectedWarning: mysql.ERTruncatedWrongValue,
12331233
},
12341234
{
1235+
// https://github.com/dolthub/dolt/issues/9936
12351236
Query: "select c0 from t0 where 1630944823 >= t0.c0",
12361237
Expected: []sql.Row{{"77367106"}},
12371238
},
12381239
{
1240+
// https://github.com/dolthub/dolt/issues/9936
12391241
Query: "select c0 from t0 where 1630944823 <= t0.c0",
12401242
Expected: []sql.Row{},
12411243
},
12421244
{
1245+
// https://github.com/dolthub/dolt/issues/9936
12431246
Query: "select c0 from t0 where '1630944823' >= t0.c0",
12441247
Expected: []sql.Row{},
12451248
},
12461249
{
1250+
// https://github.com/dolthub/dolt/issues/9936
12471251
Query: "select c0 from t0 where '1630944823' <= t0.c0",
12481252
Expected: []sql.Row{{"77367106"}},
12491253
},
12501254
{
1255+
// https://github.com/dolthub/dolt/issues/9936
12511256
Query: "select c0 from t0 where 1630944823.2 >= t0.c0",
12521257
Expected: []sql.Row{{"77367106"}},
12531258
},
12541259
{
1260+
// https://github.com/dolthub/dolt/issues/9936
12551261
Query: "select c0 from t0 where 1630944823.2 <= t0.c0",
12561262
Expected: []sql.Row{},
12571263
},
12581264
{
1265+
// https://github.com/dolthub/dolt/issues/9936
12591266
Query: "select c0 from t0 where '1630944823.2' >= t0.c0",
12601267
Expected: []sql.Row{},
12611268
},
12621269
{
1270+
// https://github.com/dolthub/dolt/issues/9936
12631271
Query: "select c0 from t0 where '1630944823.2' <= t0.c0",
12641272
Expected: []sql.Row{{"77367106"}},
12651273
},
@@ -7802,7 +7810,6 @@ CREATE TABLE tab3 (
78027810
},
78037811
},
78047812
{
7805-
// https://github.com/dolthub/dolt/issues/7372
78067813
Name: "range query convert int to string zero value",
78077814
Dialect: "mysql",
78087815
SetUpScript: []string{

sql/index_builder.go

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ package sql
1616

1717
import (
1818
"fmt"
19-
// "github.com/dolthub/go-mysql-server/sql/types"
2019
"math"
2120
"strings"
2221

0 commit comments

Comments
 (0)