Skip to content

Commit

Permalink
[ga-format-pr] Run ./format_repo.sh to fix formatting
Browse files Browse the repository at this point in the history
  • Loading branch information
JCOR11599 committed Nov 17, 2023
1 parent 88a70bd commit d3f8708
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 5 deletions.
2 changes: 1 addition & 1 deletion enginetest/queries/queries.go
Original file line number Diff line number Diff line change
Expand Up @@ -770,7 +770,7 @@ var QueryTests = []QueryTest{
Expected: []sql.Row{{"0"}},
},
{
Query: "SELECT * from mytable where (1/1 and true)",
Query: "SELECT * from mytable where (1/1 and true)",
Expected: []sql.Row{
{1, "first row"},
{2, "second row"},
Expand Down
6 changes: 4 additions & 2 deletions server/extension.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,15 @@
package server

import (
sqle "github.com/dolthub/go-mysql-server"
"sort"

"github.com/dolthub/vitess/go/mysql"
"github.com/dolthub/vitess/go/sqltypes"
querypb "github.com/dolthub/vitess/go/vt/proto/query"
"github.com/dolthub/vitess/go/vt/sqlparser"
ast "github.com/dolthub/vitess/go/vt/sqlparser"
"sort"

sqle "github.com/dolthub/go-mysql-server"
)

func Intercept(h Interceptor) {
Expand Down
5 changes: 3 additions & 2 deletions sql/core.go
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@ package sql

import (
"fmt"
"github.com/shopspring/decimal"
"math"
"math"
"strconv"
"time"

"github.com/shopspring/decimal"
)

// Expression is a combination of one or more SQL expressions.
Expand Down

0 comments on commit d3f8708

Please sign in to comment.