Skip to content

Commit

Permalink
allow too many arguments
Browse files Browse the repository at this point in the history
  • Loading branch information
SaintBacchus committed Oct 11, 2024
1 parent 42983d0 commit cfbd09a
Showing 1 changed file with 3 additions and 0 deletions.
3 changes: 3 additions & 0 deletions java/core/lance-jni/src/blocking_dataset.rs
Original file line number Diff line number Diff line change
Expand Up @@ -171,6 +171,7 @@ pub extern "system" fn Java_com_lancedb_lance_Dataset_createWithFfiSchema<'local
)
}

#[allow(clippy::too_many_arguments)]
fn inner_create_with_ffi_schema<'local>(
env: &mut JNIEnv<'local>,
arrow_schema_addr: jlong,
Expand Down Expand Up @@ -225,6 +226,7 @@ pub extern "system" fn Java_com_lancedb_lance_Dataset_createWithFfiStream<'local
)
}

#[allow(clippy::too_many_arguments)]
fn inner_create_with_ffi_stream<'local>(
env: &mut JNIEnv<'local>,
arrow_array_stream_addr: jlong,
Expand All @@ -249,6 +251,7 @@ fn inner_create_with_ffi_stream<'local>(
)
}

#[allow(clippy::too_many_arguments)]
fn create_dataset<'local>(
env: &mut JNIEnv<'local>,
path: JString,
Expand Down

0 comments on commit cfbd09a

Please sign in to comment.