Skip to content

Commit 4e0f8c3

Browse files
committed
formatting
1 parent 6ddfe1e commit 4e0f8c3

4 files changed

Lines changed: 6 additions & 4 deletions

File tree

server/functions/bit.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ package functions
1717
import (
1818
"fmt"
1919

20-
"github.com/dolthub/doltgresql/postgres/parser/sem/tree"
2120
"github.com/dolthub/go-mysql-server/sql"
2221

22+
"github.com/dolthub/doltgresql/postgres/parser/sem/tree"
2323
"github.com/dolthub/doltgresql/server/functions/framework"
2424
pgtypes "github.com/dolthub/doltgresql/server/types"
2525
"github.com/dolthub/doltgresql/utils"

server/functions/varbit.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,9 +17,9 @@ package functions
1717
import (
1818
"fmt"
1919

20-
"github.com/dolthub/doltgresql/postgres/parser/sem/tree"
2120
"github.com/dolthub/go-mysql-server/sql"
2221

22+
"github.com/dolthub/doltgresql/postgres/parser/sem/tree"
2323
"github.com/dolthub/doltgresql/server/functions/framework"
2424
pgtypes "github.com/dolthub/doltgresql/server/types"
2525
"github.com/dolthub/doltgresql/utils"

server/types/bit.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@
1515
package types
1616

1717
import (
18-
"github.com/dolthub/doltgresql/core/id"
1918
"gopkg.in/src-d/go-errors.v1"
19+
20+
"github.com/dolthub/doltgresql/core/id"
2021
)
2122

2223
// ErrWrongLengthBit is returned when a value with the incorrect length is inserted into a Bit column.

server/types/varbit.go

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -15,8 +15,9 @@
1515
package types
1616

1717
import (
18-
"github.com/dolthub/doltgresql/core/id"
1918
"gopkg.in/src-d/go-errors.v1"
19+
20+
"github.com/dolthub/doltgresql/core/id"
2021
)
2122

2223
// ErrVarBitLengthExceeded is returned when a varbit value exceeds the defined length.

0 commit comments

Comments
 (0)