瀏覽代碼

fix: log format error (#3409)

guangwu 1 年之前
父節點
當前提交
e8c1e6e09b
共有 1 個文件被更改,包括 1 次插入1 次删除
  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
 			}
 		}