Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Fix segfault in ArraySchema::check (#4787)
Previously we weren't accounting for when enumerations weren't loaded and a check was performed. This lead to attempts to dereference the nullptr when the enumeration hadn't been loaded. Given that enumerations are only unloaded when reading an array, that means these checks were already run when the schema was written so ignoring them here is fine since they're just enforcing a maximum size constraint. --- TYPE: BUG DESC: Fix segfault in ArraySchema::check
- Loading branch information