This commit is contained in:
thsun 2021-01-14 14:51:14 +08:00
parent d0f0b95cf8
commit 2b5d5e0a11

View File

@ -6,11 +6,11 @@
package sql
import (
"bytes"
"fmt"
"reflect"
"strconv"
"strings"
"bytes"
)
type ColumnType int
@ -33,10 +33,10 @@ type TimezoneConversion struct {
}
type Column struct {
Name string
IsUnsigned bool
Charset string
Type ColumnType
Name string
IsUnsigned bool
Charset string
Type ColumnType
// add Octet length for binary type, fix bytes with suffix "00" get clipped in mysql binlog.
// https://github.com/github/gh-ost/issues/909