File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -141,14 +141,14 @@ func (this *Inspector) inspectOriginalAndGhostTables() (err error) {
141
141
switch column .Type {
142
142
case sql .FloatColumnType :
143
143
{
144
- this .migrationContext .Log .Warning ("Will not use %+v as shared key due to FLOAT data type" , sharedUniqueKey .Name )
144
+ this .migrationContext .Log .Warningf ("Will not use %+v as shared key due to FLOAT data type" , sharedUniqueKey .Name )
145
145
uniqueKeyIsValid = false
146
146
}
147
147
case sql .JSONColumnType :
148
148
{
149
149
// Noteworthy that at this time MySQL does not allow JSON indexing anyhow, but this code
150
150
// will remain in place to potentially handle the future case where JSON is supported in indexes.
151
- this .migrationContext .Log .Warning ("Will not use %+v as shared key due to JSON data type" , sharedUniqueKey .Name )
151
+ this .migrationContext .Log .Warningf ("Will not use %+v as shared key due to JSON data type" , sharedUniqueKey .Name )
152
152
uniqueKeyIsValid = false
153
153
}
154
154
}
You can’t perform that action at this time.
0 commit comments