Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Clippy
  • Loading branch information
progval committed Jun 10, 2024
commit 74c40ee8dae1db70e15eb818e3da53ac4a1b93a1
2 changes: 1 addition & 1 deletion parquet/src/file/writer.rs
Original file line number Diff line number Diff line change
Expand Up @@ -434,7 +434,7 @@ impl<W: Write + Send> SerializedFileWriter<W> {
/// and returns the updated row group metadata.
fn write_bloom_filters<W: Write + Send>(
buf: &mut TrackedWrite<W>,
bloom_filters: &mut Vec<Vec<Option<Sbbf>>>,
bloom_filters: &mut [Vec<Option<Sbbf>>],
row_group: &mut RowGroupMetaData,
) -> Result<()> {
// iter row group
Expand Down