Skip to content

Commit b9782b6

Browse files
committed
fix typo
1 parent 1816df2 commit b9782b6

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

parquet/benches/arrow_reader_clickbench.rs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -834,15 +834,15 @@ impl ReadTest {
834834
/// Return a map from `column_names` in `filter_columns` to the index in the schema
835835
fn column_indices(schema: &SchemaDescriptor, column_names: &Vec<&str>) -> Vec<usize> {
836836
let fields = schema.root_schema().get_fields();
837-
let mut indicices = vec![];
837+
let mut indices = vec![];
838838
for &name in column_names {
839839
for (idx, field) in fields.iter().enumerate().take(schema.num_columns()) {
840840
if name == field.name() {
841-
indicices.push(idx)
841+
indices.push(idx)
842842
}
843843
}
844844
}
845-
indicices
845+
indices
846846
}
847847

848848
/// Loads Parquet metadata from the given path, including page indexes

0 commit comments

Comments
 (0)