Skip to content

Commit 3eb819d

Browse files
committed
fixup! add durable frame_no to proto
1 parent 631dd81 commit 3eb819d

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

libsql-replication/proto/replication_log.proto

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -36,7 +36,7 @@ message Frame {
3636
// if this frames is a commit frame, then this can be set
3737
// to the time when the transaction was commited
3838
optional int64 timestamp = 2;
39-
optional int64 durable_frame_no = 3;
39+
optional uint64 durable_frame_no = 3;
4040
}
4141

4242
message Frames {

libsql-replication/src/generated/wal_log.rs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -83,8 +83,8 @@ pub struct Frame {
8383
/// to the time when the transaction was commited
8484
#[prost(int64, optional, tag = "2")]
8585
pub timestamp: ::core::option::Option<i64>,
86-
#[prost(int64, optional, tag = "3")]
87-
pub durable_frame_no: ::core::option::Option<i64>,
86+
#[prost(uint64, optional, tag = "3")]
87+
pub durable_frame_no: ::core::option::Option<u64>,
8888
}
8989
#[allow(clippy::derive_partial_eq_without_eq)]
9090
#[derive(Clone, PartialEq, ::prost::Message)]

0 commit comments

Comments
 (0)