We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 2b595b1 + 63a0e5c commit 4f9c144Copy full SHA for 4f9c144
go/logic/inspect.go
@@ -298,7 +298,7 @@ func (this *Inspector) validateBinlogs() error {
298
query = `select @@global.binlog_row_image`
299
if err := this.db.QueryRow(query).Scan(&this.migrationContext.OriginalBinlogRowImage); err != nil {
300
// Only as of 5.6. We wish to support 5.5 as well
301
- this.migrationContext.OriginalBinlogRowImage = ""
+ this.migrationContext.OriginalBinlogRowImage = "FULL"
302
}
303
this.migrationContext.OriginalBinlogRowImage = strings.ToUpper(this.migrationContext.OriginalBinlogRowImage)
304
0 commit comments