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.
1 parent 9b88cb6 commit a2c5685Copy full SHA for a2c5685
lib/binlog_event.js
@@ -30,8 +30,8 @@ BinlogEvent.prototype._readTableId = function (parser) {
30
31
function Heartbeat(parser) {
32
BinlogEvent.apply(this, arguments);
33
- this.binlogName = parser.parseString(this.size - 8);
34
- this.position = Common.parseUInt64(parser);
+ this.binlogName = parser.parseString(this.size);
+ this.position = 'nonsense'; //Common.parseUInt64(parser);
35
}
36
util.inherits(Heartbeat, BinlogEvent);
37
0 commit comments