+1 offset applies to Format description header as well
This commit is contained in:
Родитель
054bfe2bf6
Коммит
a1edbf963f
|
@ -152,7 +152,7 @@ func MySQLBinlogBinaryContents(binlogFiles []string, startPosition int64, stopPo
|
|||
}
|
||||
{
|
||||
// magic header
|
||||
cmd := fmt.Sprintf("cat %s | head -c%d >> %s", binlogFiles[0], 120, tmpFile.Name())
|
||||
cmd := fmt.Sprintf("cat %s | head -c%d >> %s", binlogFiles[0], (120 + 1), tmpFile.Name())
|
||||
if _, err := commandOutput(sudoCmd(cmd)); err != nil {
|
||||
return "", err
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче