Skip to content

Commit

Permalink
addressed review comments
Browse files Browse the repository at this point in the history
Signed-off-by: Niranjan Artal <[email protected]>
  • Loading branch information
nartal1 committed Jan 7, 2025
1 parent 5d69536 commit a564c9e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/main/cpp/src/NativeParquetJni.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -233,7 +233,7 @@ class column_pruner {
if (found != children.end()) {
// Record the current size of schema_map before processing the child
// This helps determine if the child was retained after processing.
std::size_t before_child_size = schema_map.size();
auto const before_child_size = schema_map.size();
found->second.filter_schema(schema,
ignore_case,
current_input_schema_index,
Expand All @@ -250,7 +250,7 @@ class column_pruner {
schema_num_children[struct_map_position]++;
}
} else {
// No match was found so skip the child
// No match was found so skip the child.
skip(schema, current_input_schema_index, next_input_chunk_index);
}
}
Expand Down

0 comments on commit a564c9e

Please sign in to comment.