fix: fix arm64 compile issue (#41593)

issue: https://github.com/milvus-io/milvus/issues/41059,
https://github.com/milvus-io/milvus/issues/41510

Signed-off-by: SpadeA <tangchenjie1210@gmail.com>
This commit is contained in:
Spade A 2025-04-29 13:19:25 +08:00 committed by GitHub
parent 71b14fc32b
commit f35e8f7420
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
3 changed files with 3 additions and 3 deletions

View File

@ -116,7 +116,7 @@ impl IndexWriterWrapper {
pub fn add_json_key_stats(
&mut self,
keys: &[*const i8],
keys: &[*const c_char],
json_offsets: &[*const i64],
json_offsets_len: &[usize],
) -> Result<()> {

View File

@ -190,7 +190,7 @@ impl IndexWriterWrapperImpl {
pub fn add_json_key_stats(
&mut self,
keys: &[*const i8],
keys: &[*const c_char],
json_offsets: &[*const i64],
json_offsets_len: &[usize],
) -> Result<()> {

View File

@ -160,7 +160,7 @@ impl IndexWriterWrapperImpl {
pub fn add_json_key_stats(
&mut self,
keys: &[*const i8],
keys: &[*const c_char],
json_offsets: &[*const i64],
json_offsets_len: &[usize],
) -> Result<()> {