Commit 34fff0c 1 parent eb9d154 commit 34fff0c Copy full SHA for 34fff0c
File tree 3 files changed +4
-4
lines changed
proxy_components/proxy_ffi/src
raftstore-proxy/ffi/src/RaftStoreProxyFFI
3 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -519,7 +519,7 @@ pub mod root {
519
519
> ,
520
520
pub fn_get_wb_size :
521
521
:: std:: option:: Option < unsafe extern "C" fn ( arg1 : root:: DB :: RawVoidPtr ) -> u64 > ,
522
- pub get_wb_count :
522
+ pub fn_get_wb_count :
523
523
:: std:: option:: Option < unsafe extern "C" fn ( arg1 : root:: DB :: RawVoidPtr ) -> u64 > ,
524
524
pub fn_is_wb_empty :
525
525
:: std:: option:: Option < unsafe extern "C" fn ( arg1 : root:: DB :: RawVoidPtr ) -> u8 > ,
@@ -791,7 +791,7 @@ pub mod root {
791
791
arg3 : root:: DB :: RawVoidPtr ,
792
792
) -> u32 ;
793
793
}
794
- pub const RAFT_STORE_PROXY_VERSION : u64 = 714870053267928739 ;
794
+ pub const RAFT_STORE_PROXY_VERSION : u64 = 4376098841976428098 ;
795
795
pub const RAFT_STORE_PROXY_MAGIC_NUMBER : u32 = 324508639 ;
796
796
}
797
797
}
Original file line number Diff line number Diff line change 1
1
#pragma once
2
2
#include <cstdint>
3
- namespace DB { constexpr uint64_t RAFT_STORE_PROXY_VERSION = 714870053267928739ull ; }
3
+ namespace DB { constexpr uint64_t RAFT_STORE_PROXY_VERSION = 4376098841976428098ull ; }
Original file line number Diff line number Diff line change @@ -297,7 +297,7 @@ struct PageStorageInterfaces {
297
297
void (*fn_wb_put_page)(RawVoidPtr, BaseBuffView, BaseBuffView);
298
298
void (*fn_wb_del_page)(RawVoidPtr, BaseBuffView);
299
299
uint64_t (*fn_get_wb_size)(RawVoidPtr);
300
- uint64_t (*get_wb_count )(RawVoidPtr);
300
+ uint64_t (*fn_get_wb_count )(RawVoidPtr);
301
301
uint8_t (*fn_is_wb_empty)(RawVoidPtr);
302
302
void (*fn_handle_merge_wb)(RawVoidPtr, RawVoidPtr);
303
303
void (*fn_handle_clear_wb)(RawVoidPtr);
You can’t perform that action at this time.
0 commit comments