Skip to content

Commit 72dc82a

Browse files
committed
[ga-format-pr] Run ./format_repo.sh to fix formatting
1 parent dca626b commit 72dc82a

File tree

3 files changed

+7
-5
lines changed

3 files changed

+7
-5
lines changed

sql/types/decimal.go

Lines changed: 4 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -17,13 +17,14 @@ package types
1717
import (
1818
"context"
1919
"fmt"
20+
"math/big"
21+
"reflect"
22+
"strings"
23+
2024
"github.com/dolthub/vitess/go/sqltypes"
2125
"github.com/dolthub/vitess/go/vt/proto/query"
2226
"github.com/shopspring/decimal"
2327
"gopkg.in/src-d/go-errors.v1"
24-
"math/big"
25-
"reflect"
26-
"strings"
2728

2829
"github.com/dolthub/go-mysql-server/sql"
2930
"github.com/dolthub/go-mysql-server/sql/values"

sql/types/strings.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,6 @@ package types
1717
import (
1818
"context"
1919
"fmt"
20-
"github.com/dolthub/go-mysql-server/sql/values"
2120
"reflect"
2221
"strconv"
2322
strings2 "strings"
@@ -31,6 +30,7 @@ import (
3130

3231
"github.com/dolthub/go-mysql-server/sql"
3332
"github.com/dolthub/go-mysql-server/sql/encodings"
33+
"github.com/dolthub/go-mysql-server/sql/values"
3434
)
3535

3636
const (

sql/values/encoding.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,11 +18,12 @@ import (
1818
"bytes"
1919
"encoding/binary"
2020
"fmt"
21-
"github.com/shopspring/decimal"
2221
"math"
2322
"math/big"
2423
"time"
2524
"unsafe"
25+
26+
"github.com/shopspring/decimal"
2627
)
2728

2829
type Type struct {

0 commit comments

Comments
 (0)