diff options
Diffstat (limited to 'tddb/td/db/binlog/Binlog.h')
| -rw-r--r-- | tddb/td/db/binlog/Binlog.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tddb/td/db/binlog/Binlog.h b/tddb/td/db/binlog/Binlog.h index 617173167..70029129a 100644 --- a/tddb/td/db/binlog/Binlog.h +++ b/tddb/td/db/binlog/Binlog.h @@ -132,7 +132,7 @@ class Binlog { enum class EncryptionType { None, AesCtr } encryption_type_ = EncryptionType::None; // AesCtrEncryption - BufferSlice aes_ctr_key_salt_; + string aes_ctr_key_salt_; UInt256 aes_ctr_key_; AesCtrState aes_ctr_state_; @@ -144,7 +144,7 @@ class Binlog { int64 fd_size_{0}; uint64 fd_events_{0}; string path_; - std::vector<BinlogEvent> pending_events_; + vector<BinlogEvent> pending_events_; unique_ptr<detail::BinlogEventsProcessor> processor_; unique_ptr<detail::BinlogEventsBuffer> events_buffer_; bool in_flush_events_buffer_{false}; |
