File tree Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Expand file tree Collapse file tree 4 files changed +10
-6
lines changed Original file line number Diff line number Diff line change @@ -17,13 +17,15 @@ package enginetest
1717import (
1818 "context"
1919 "fmt"
20+ "testing"
21+
22+ "github.com/stretchr/testify/require"
23+
2024 sqle "github.com/dolthub/go-mysql-server"
2125 "github.com/dolthub/go-mysql-server/memory"
2226 "github.com/dolthub/go-mysql-server/sql"
2327 "github.com/dolthub/go-mysql-server/sql/planbuilder"
2428 "github.com/dolthub/go-mysql-server/sql/types"
25- "github.com/stretchr/testify/require"
26- "testing"
2729)
2830
2931// ErrorWrapper is a wrapped type that errors when unwrapped. This can be used to test that certain operations
Original file line number Diff line number Diff line change @@ -16,7 +16,6 @@ package memory
1616
1717import (
1818 "fmt"
19- "github.com/dolthub/go-mysql-server/sql/types"
2019 "sort"
2120 "strconv"
2221 "strings"
@@ -26,6 +25,7 @@ import (
2625 "github.com/dolthub/go-mysql-server/sql"
2726 "github.com/dolthub/go-mysql-server/sql/expression"
2827 "github.com/dolthub/go-mysql-server/sql/transform"
28+ "github.com/dolthub/go-mysql-server/sql/types"
2929)
3030
3131// TableData encapsulates all schema and data for a table's schema and rows. Other aspects of a table can change
Original file line number Diff line number Diff line change @@ -18,14 +18,16 @@ import (
1818 "bytes"
1919 "context"
2020 "fmt"
21+ "testing"
22+
23+ "github.com/stretchr/testify/require"
24+
2125 "github.com/dolthub/go-mysql-server/memory"
2226 "github.com/dolthub/go-mysql-server/sql"
2327 "github.com/dolthub/go-mysql-server/sql/expression"
2428 "github.com/dolthub/go-mysql-server/sql/expression/function"
2529 "github.com/dolthub/go-mysql-server/sql/planbuilder"
2630 "github.com/dolthub/go-mysql-server/sql/types"
27- "github.com/stretchr/testify/require"
28- "testing"
2931)
3032
3133type SimpleWrapper [T any ] struct {
Original file line number Diff line number Diff line change @@ -17,13 +17,13 @@ package rowexec
1717import (
1818 "errors"
1919 "fmt"
20- "github.com/dolthub/go-mysql-server/sql/types"
2120 "io"
2221
2322 "github.com/cespare/xxhash/v2"
2423
2524 "github.com/dolthub/go-mysql-server/sql"
2625 "github.com/dolthub/go-mysql-server/sql/expression/function/aggregation"
26+ "github.com/dolthub/go-mysql-server/sql/types"
2727)
2828
2929type groupByIter struct {
You can’t perform that action at this time.
0 commit comments