We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d0f0b95 commit 2b5d5e0Copy full SHA for 2b5d5e0
go/sql/types.go
@@ -6,11 +6,11 @@
6
package sql
7
8
import (
9
+ "bytes"
10
"fmt"
11
"reflect"
12
"strconv"
13
"strings"
- "bytes"
14
)
15
16
type ColumnType int
@@ -33,10 +33,10 @@ type TimezoneConversion struct {
33
}
34
35
type Column struct {
36
- Name string
37
- IsUnsigned bool
38
- Charset string
39
- Type ColumnType
+ Name string
+ IsUnsigned bool
+ Charset string
+ Type ColumnType
40
41
// add Octet length for binary type, fix bytes with suffix "00" get clipped in mysql binlog.
42
// https://github.com/github/gh-ost/issues/909
0 commit comments