Skip to content

Commit 71972cb

Browse files
committed
Fix CI
1 parent fc3643d commit 71972cb

File tree

2 files changed

+3
-2
lines changed

2 files changed

+3
-2
lines changed

arrow-array/src/ffi.rs

+2-2
Original file line numberDiff line numberDiff line change
@@ -118,8 +118,8 @@ type Result<T> = std::result::Result<T, ArrowError>; // TODO(alexandreyc): we sh
118118
/// Assumes that these pointers represent valid C Data Interfaces, both in memory
119119
/// representation and lifetime via the `release` mechanism.
120120
///
121-
/// This function copies the content of two FFI structs [ffi::FFI_ArrowArray] and
122-
/// [ffi::FFI_ArrowSchema] in the array to the location pointed by the raw pointers.
121+
/// This function copies the content of two FFI structs [arrow_data::ffi::FFI_ArrowArray] and
122+
/// [arrow_schema::ffi::FFI_ArrowSchema] in the array to the location pointed by the raw pointers.
123123
/// Usually the raw pointers are provided by the array data consumer.
124124
#[deprecated(note = "Use FFI_ArrowArray::new and FFI_ArrowSchema::try_from")]
125125
pub unsafe fn export_array_into_raw(

arrow-array/src/ffi_stream.rs

+1
Original file line numberDiff line numberDiff line change
@@ -83,6 +83,7 @@ const ENOSYS: i32 = 78;
8383
/// This was created by bindgen
8484
#[repr(C)]
8585
#[derive(Debug)]
86+
#[allow(missing_docs)]
8687
pub struct FFI_ArrowArrayStream {
8788
pub get_schema: Option<
8889
unsafe extern "C" fn(arg1: *mut FFI_ArrowArrayStream, out: *mut FFI_ArrowSchema) -> c_int,

0 commit comments

Comments
 (0)