|
@@ -6,6 +6,7 @@ import java.nio.ByteBuffer;
|
|
|
import java.nio.charset.Charset;
|
|
|
import java.util.List;
|
|
|
|
|
|
+import com.taobao.tddl.dbsync.binlog.LogPosition;
|
|
|
import org.apache.commons.lang.exception.ExceptionUtils;
|
|
|
import org.slf4j.Logger;
|
|
|
import org.slf4j.LoggerFactory;
|
|
@@ -89,6 +90,7 @@ public class MysqlConnection implements ErosaConnection {
|
|
|
decoder.handle(LogEvent.QUERY_EVENT);
|
|
|
decoder.handle(LogEvent.XID_EVENT);
|
|
|
LogContext context = new LogContext();
|
|
|
+ context.setLogPosition(new LogPosition(binlogfilename));
|
|
|
while (fetcher.fetch()) {
|
|
|
LogEvent event = null;
|
|
|
event = decoder.decode(fetcher, context);
|
|
@@ -110,6 +112,7 @@ public class MysqlConnection implements ErosaConnection {
|
|
|
fetcher.start(connector.getChannel());
|
|
|
LogDecoder decoder = new LogDecoder(LogEvent.UNKNOWN_EVENT, LogEvent.ENUM_END_EVENT);
|
|
|
LogContext context = new LogContext();
|
|
|
+ context.setLogPosition(new LogPosition(binlogfilename));
|
|
|
while (fetcher.fetch()) {
|
|
|
LogEvent event = null;
|
|
|
event = decoder.decode(fetcher, context);
|