| 27 | |
| 28 | struct PARQUET_EXPORT LevelInfo { |
| 29 | LevelInfo() |
| 30 | : null_slot_usage(1), def_level(0), rep_level(0), repeated_ancestor_def_level(0) {} |
| 31 | LevelInfo(int32_t null_slots, int32_t definition_level, int32_t repetition_level, |
| 32 | int32_t repeated_ancestor_definition_level) |
| 33 | : null_slot_usage(null_slots), |