Browse Source

fix: log format error (#3409)

guangwu 1 năm trước cách đây
mục cha
commit
e8c1e6e09b
1 tập tin đã thay đổi với 1 bổ sung1 xóa
  1. 1 1
      tools/goctl/model/sql/parser/parser.go

+ 1 - 1
tools/goctl/model/sql/parser/parser.go

@@ -324,7 +324,7 @@ func ConvertDataType(table *model.Table, strict bool) (*Table, error) {
 		if len(each) == 1 {
 			one := each[0]
 			if one.Name == table.PrimaryKey.Name {
-				log.Warning("[ConvertDataType]: table q%, duplicate unique index with primary key:  %q", table.Table, one.Name)
+				log.Warning("[ConvertDataType]: table %q, duplicate unique index with primary key:  %q", table.Table, one.Name)
 				continue
 			}
 		}