TileDB
TileDB copied to clipboard
Fix narrowing integer error in number of cells per tile computation
This PR fixes a bug in the templated Domain::compute_cell_num_per_tile function.
Previously, the cell_num_per_tile_ (type uint64_t) would be converted to a smaller value when being passed into Dimension::tile_extent_mult if the maximum values of the datatype of the dimension was smaller than the current cell_num_per_tile_ value.
TYPE: BUG DESC: Fix narrowing integer error in number of cells per tile computation