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 c4f70a6 commit efc9cb3Copy full SHA for efc9cb3
src/loaders/parquet/parquet.rs
@@ -101,7 +101,7 @@ pub async fn process_and_return_parquet_file(
101
let selected_arrays = original_schema.fields().iter()
102
.map(|field| {
103
if let Ok(index) = batch.schema().index_of(field.name()) {
104
- if columns.contains(&field.name().to_string()) || &field.name().to_string() == "_hipscat_index" {
+ if columns.contains(&field.name().to_string()) || field.name().to_string().contains("_healpix") {
105
batch.column(index).clone()
106
} else {
107
new_null_array(
0 commit comments