From 2b5d5e0a11a54db8819c092a0f549d8e859d2d2c Mon Sep 17 00:00:00 2001 From: thsun Date: Thu, 14 Jan 2021 14:51:14 +0800 Subject: [PATCH] gofmt --- go/sql/types.go | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/go/sql/types.go b/go/sql/types.go index 3e179da..97db473 100644 --- a/go/sql/types.go +++ b/go/sql/types.go @@ -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