We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1816df2 commit b9782b6Copy full SHA for b9782b6
parquet/benches/arrow_reader_clickbench.rs
@@ -834,15 +834,15 @@ impl ReadTest {
834
/// Return a map from `column_names` in `filter_columns` to the index in the schema
835
fn column_indices(schema: &SchemaDescriptor, column_names: &Vec<&str>) -> Vec<usize> {
836
let fields = schema.root_schema().get_fields();
837
- let mut indicices = vec![];
+ let mut indices = vec![];
838
for &name in column_names {
839
for (idx, field) in fields.iter().enumerate().take(schema.num_columns()) {
840
if name == field.name() {
841
- indicices.push(idx)
+ indices.push(idx)
842
}
843
844
845
- indicices
+ indices
846
847
848
/// Loads Parquet metadata from the given path, including page indexes
0 commit comments