Skip to content

Commit 21f8211

Browse files
committed
[ga-format-pr] Run ./format_repo.sh to fix formatting
1 parent c451888 commit 21f8211

File tree

5 files changed

+11
-12
lines changed

5 files changed

+11
-12
lines changed

enginetest/memory_engine_test.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -212,7 +212,7 @@ func TestSingleScript(t *testing.T) {
212212
},
213213
Assertions: []queries.ScriptTestAssertion{
214214
{
215-
Query: "select 'abcdef' in (select name from test)",
215+
Query: "select 'abcdef' in (select name from test)",
216216
Expected: []sql.Row{
217217
{true},
218218
},

memory/table_data.go

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

1717
import (
18-
"fmt"
18+
"fmt"
1919
"sort"
2020
"strconv"
2121
"strings"

sql/plan/hash_lookup.go

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -18,10 +18,9 @@ import (
1818
"fmt"
1919
"sync"
2020

21-
22-
"github.com/dolthub/go-mysql-server/sql"
23-
"github.com/dolthub/go-mysql-server/sql/hash"
24-
"github.com/dolthub/go-mysql-server/sql/types"
21+
"github.com/dolthub/go-mysql-server/sql"
22+
"github.com/dolthub/go-mysql-server/sql/hash"
23+
"github.com/dolthub/go-mysql-server/sql/types"
2524
)
2625

2726
// NewHashLookup returns a node that performs an indexed hash lookup

sql/plan/subquery.go

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,14 +16,13 @@ package plan
1616

1717
import (
1818
"fmt"
19-
"github.com/dolthub/go-mysql-server/sql/hash"
20-
"io"
19+
"io"
2120
"sync"
2221

22+
"github.com/dolthub/go-mysql-server/sql"
23+
"github.com/dolthub/go-mysql-server/sql/hash"
2324
"github.com/dolthub/go-mysql-server/sql/transform"
2425
"github.com/dolthub/go-mysql-server/sql/types"
25-
26-
"github.com/dolthub/go-mysql-server/sql"
2726
)
2827

2928
// Subquery is as an expression whose value is derived by executing a subquery. It must be executed for every row in

sql/rowexec/other_iters.go

Lines changed: 3 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,11 @@
1515
package rowexec
1616

1717
import (
18-
"github.com/dolthub/go-mysql-server/sql/hash"
19-
"io"
18+
"io"
2019
"sync"
2120

21+
"github.com/dolthub/go-mysql-server/sql/hash"
22+
2223
"github.com/dolthub/go-mysql-server/sql"
2324
"github.com/dolthub/go-mysql-server/sql/plan"
2425
)

0 commit comments

Comments
 (0)