aboutsummaryrefslogtreecommitdiffhomepage
path: root/tddb/td/db/binlog/detail/BinlogEventsBuffer.h
diff options
context:
space:
mode:
Diffstat (limited to 'tddb/td/db/binlog/detail/BinlogEventsBuffer.h')
-rw-r--r--tddb/td/db/binlog/detail/BinlogEventsBuffer.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/tddb/td/db/binlog/detail/BinlogEventsBuffer.h b/tddb/td/db/binlog/detail/BinlogEventsBuffer.h
index 32cc78e4b..37be436c0 100644
--- a/tddb/td/db/binlog/detail/BinlogEventsBuffer.h
+++ b/tddb/td/db/binlog/detail/BinlogEventsBuffer.h
@@ -25,7 +25,7 @@ class BinlogEventsBuffer {
auto &event = events_[i];
if (i + 1 != ids_.size() && (event.flags_ & BinlogEvent::Flags::Partial) == 0) {
callback(BinlogEvent(BinlogEvent::create_raw(event.id_, event.type_, event.flags_ | BinlogEvent::Flags::Partial,
- create_storer(event.data_)),
+ create_storer(event.get_data())),
BinlogDebugInfo{__FILE__, __LINE__}));
} else {
callback(std::move(event));