Skip to content

Commit 91f1c0d

Browse files
committed
[ga-format-pr] Run ./format_repo.sh to fix formatting
1 parent a92ff64 commit 91f1c0d

File tree

4 files changed

+10
-6
lines changed

4 files changed

+10
-6
lines changed

enginetest/wrapper_test.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,15 @@ package enginetest
1717
import (
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

memory/table_data.go

100755100644
Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,6 @@ package memory
1616

1717
import (
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

memory/wrapper_test.go

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff 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

3133
type SimpleWrapper[T any] struct {

sql/rowexec/agg.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,13 @@ package rowexec
1717
import (
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

2929
type groupByIter struct {

0 commit comments

Comments
 (0)