Skips validation of the data. If this flag is enabled, `[Self::build`] will skip validation of the data If this flag is not enabled, `[Self::build`] will validate that all buffers are valid and will return an error if any data is invalid. Validation can be expensive. # Safety If validation is skipped, the buffers must form a valid Arrow array, otherwise undefined behavior will result
(mut self, skip_validation: bool)
| 2244 | /// If validation is skipped, the buffers must form a valid Arrow array, |
| 2245 | /// otherwise undefined behavior will result |
| 2246 | pub unsafe fn skip_validation(mut self, skip_validation: bool) -> Self { |
| 2247 | unsafe { |
| 2248 | self.skip_validation.set(skip_validation); |
| 2249 | } |
| 2250 | self |
| 2251 | } |
| 2252 | } |
| 2253 | |
| 2254 | impl From<ArrayData> for ArrayDataBuilder { |
no test coverage detected