Skip to content

Commit 34fff0c

Browse files
committed
a
Signed-off-by: CalvinNeo <[email protected]>
1 parent eb9d154 commit 34fff0c

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

proxy_components/proxy_ffi/src/interfaces.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ pub mod root {
519519
>,
520520
pub fn_get_wb_size:
521521
::std::option::Option<unsafe extern "C" fn(arg1: root::DB::RawVoidPtr) -> u64>,
522-
pub get_wb_count:
522+
pub fn_get_wb_count:
523523
::std::option::Option<unsafe extern "C" fn(arg1: root::DB::RawVoidPtr) -> u64>,
524524
pub fn_is_wb_empty:
525525
::std::option::Option<unsafe extern "C" fn(arg1: root::DB::RawVoidPtr) -> u8>,
@@ -791,7 +791,7 @@ pub mod root {
791791
arg3: root::DB::RawVoidPtr,
792792
) -> u32;
793793
}
794-
pub const RAFT_STORE_PROXY_VERSION: u64 = 714870053267928739;
794+
pub const RAFT_STORE_PROXY_VERSION: u64 = 4376098841976428098;
795795
pub const RAFT_STORE_PROXY_MAGIC_NUMBER: u32 = 324508639;
796796
}
797797
}
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
11
#pragma once
22
#include <cstdint>
3-
namespace DB { constexpr uint64_t RAFT_STORE_PROXY_VERSION = 714870053267928739ull; }
3+
namespace DB { constexpr uint64_t RAFT_STORE_PROXY_VERSION = 4376098841976428098ull; }

raftstore-proxy/ffi/src/RaftStoreProxyFFI/ProxyFFI.h

+1-1
Original file line numberDiff line numberDiff line change
@@ -297,7 +297,7 @@ struct PageStorageInterfaces {
297297
void (*fn_wb_put_page)(RawVoidPtr, BaseBuffView, BaseBuffView);
298298
void (*fn_wb_del_page)(RawVoidPtr, BaseBuffView);
299299
uint64_t (*fn_get_wb_size)(RawVoidPtr);
300-
uint64_t (*get_wb_count)(RawVoidPtr);
300+
uint64_t (*fn_get_wb_count)(RawVoidPtr);
301301
uint8_t (*fn_is_wb_empty)(RawVoidPtr);
302302
void (*fn_handle_merge_wb)(RawVoidPtr, RawVoidPtr);
303303
void (*fn_handle_clear_wb)(RawVoidPtr);

0 commit comments

Comments
 (0)