Przeglądaj źródła

fix: log format error (#3409)

guangwu 1 rok temu
rodzic
commit
e8c1e6e09b
1 zmienionych plików z 1 dodań i 1 usunięć
  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
 			}
 		}