Skip to content

Commit acd5b0c

Browse files
committed
clippy
1 parent 0c2fe66 commit acd5b0c

File tree

1 file changed

+2
-1
lines changed
  • datafusion/physical-plan/src/joins

1 file changed

+2
-1
lines changed

datafusion/physical-plan/src/joins/utils.rs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -910,6 +910,7 @@ pub(crate) fn get_final_indices_from_bit_map(
910910
(left_indices, right_indices)
911911
}
912912

913+
#[expect(clippy::too_many_arguments)]
913914
pub(crate) fn apply_join_filter_to_indices(
914915
build_input_buffer: &RecordBatch,
915916
probe_batch: &RecordBatch,
@@ -993,6 +994,7 @@ fn new_empty_schema_batch(schema: &Schema, row_count: usize) -> Result<RecordBat
993994

994995
/// Returns a new [RecordBatch] by combining the `left` and `right` according to `indices`.
995996
/// The resulting batch has [Schema] `schema`.
997+
#[expect(clippy::too_many_arguments)]
996998
pub(crate) fn build_batch_from_indices(
997999
schema: &Schema,
9981000
build_input_buffer: &RecordBatch,
@@ -2907,7 +2909,6 @@ mod tests {
29072909
Ok(())
29082910
}
29092911

2910-
#[test]
29112912
#[test]
29122913
fn test_build_batch_empty_build_side_empty_schema() -> Result<()> {
29132914
// When the output schema has no fields (empty projection pushed into

0 commit comments

Comments
 (0)