Skip to content

Commit 63a0e5c

Browse files
author
Shlomi Noach
committed
fixed 5.5 binlog_row_image default value
1 parent 2a00abf commit 63a0e5c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

go/logic/inspect.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -298,7 +298,7 @@ func (this *Inspector) validateBinlogs() error {
298298
query = `select @@global.binlog_row_image`
299299
if err := this.db.QueryRow(query).Scan(&this.migrationContext.OriginalBinlogRowImage); err != nil {
300300
// Only as of 5.6. We wish to support 5.5 as well
301-
this.migrationContext.OriginalBinlogRowImage = ""
301+
this.migrationContext.OriginalBinlogRowImage = "FULL"
302302
}
303303
this.migrationContext.OriginalBinlogRowImage = strings.ToUpper(this.migrationContext.OriginalBinlogRowImage)
304304

0 commit comments

Comments
 (0)