File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
datafusion/physical-plan/src/joins Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff 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) ]
913914pub ( 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) ]
996998pub ( 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
You can’t perform that action at this time.
0 commit comments