File tree Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Expand file tree Collapse file tree 3 files changed +4
-3
lines changed Original file line number Diff line number Diff line change @@ -1230,14 +1230,14 @@ var QueryTests = []QueryTest{
1230
1230
Expected : []sql.Row {{int64 (2 )}},
1231
1231
},
1232
1232
{
1233
- Query : "SELECT i FROM mytable WHERE s = 'first row' ORDER BY i DESC LIMIT ?;" ,
1233
+ Query : "SELECT i FROM mytable WHERE s = 'first row' ORDER BY i DESC LIMIT ?;" ,
1234
1234
Bindings : map [string ]sql.Expression {
1235
1235
"v1" : expression .NewLiteral (1 , sql .Int8 ),
1236
1236
},
1237
1237
Expected : []sql.Row {{int64 (1 )}},
1238
1238
},
1239
1239
{
1240
- Query : "SELECT i FROM mytable ORDER BY i LIMIT ? OFFSET 2;" ,
1240
+ Query : "SELECT i FROM mytable ORDER BY i LIMIT ? OFFSET 2;" ,
1241
1241
Bindings : map [string ]sql.Expression {
1242
1242
"v1" : expression .NewLiteral (1 , sql .Int8 ),
1243
1243
"v2" : expression .NewLiteral (1 , sql .Int8 ),
Original file line number Diff line number Diff line change @@ -126,6 +126,7 @@ golang.org/x/tools v0.0.0-20190226205152-f727befe758c/go.mod h1:9Yl7xja0Znq3iFh3
126
126
golang.org/x/tools v0.0.0-20190311212946-11955173bddd /go.mod h1:LCzVGOaR6xXOjkQ3onu1FJEFr0SW1gC7cKk1uF8kGRs =
127
127
golang.org/x/tools v0.0.0-20190425150028-36563e24a262 /go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q =
128
128
golang.org/x/tools v0.0.0-20190524140312-2c0ae7006135 /go.mod h1:RgjU9mgBXZiqYHBnxXauZ1Gv1EHHAz9KjViQ78xBX0Q =
129
+ golang.org/x/tools v0.0.0-20190830154057-c17b040389b9 h1:5/jaG/gKlo3xxvUn85ReNyTlN7BvlPPsxC6sHZKjGEE =
129
130
golang.org/x/tools v0.0.0-20190830154057-c17b040389b9 /go.mod h1:b+2E5dAYhXwXZwtnZ6UAqBI28+e2cm9otk0dWdXHAEo =
130
131
golang.org/x/xerrors v0.0.0-20190717185122-a985d3407aa7 /go.mod h1:I/5z698sn9Ka8TeJc9MKroUUfqBBauWjQqLJ2OPfmY0 =
131
132
google.golang.org/appengine v1.1.0 /go.mod h1:EbEs0AVv82hx2wNQdGPgUI5lhzA/G0D9YwlJXL52JkM =
Original file line number Diff line number Diff line change @@ -22,10 +22,10 @@ import (
22
22
"strings"
23
23
"unicode"
24
24
25
- "github.com/dolthub/go-mysql-server/sql/expression"
26
25
errors "gopkg.in/src-d/go-errors.v1"
27
26
28
27
"github.com/dolthub/go-mysql-server/sql"
28
+ "github.com/dolthub/go-mysql-server/sql/expression"
29
29
"github.com/dolthub/go-mysql-server/sql/plan"
30
30
)
31
31
You can’t perform that action at this time.
0 commit comments