(
array: Vec<Option<i256>>,
precision: u8,
scale: i8,
)
| 486 | } |
| 487 | |
| 488 | fn create_decimal256_array( |
| 489 | array: Vec<Option<i256>>, |
| 490 | precision: u8, |
| 491 | scale: i8, |
| 492 | ) -> Result<Decimal256Array, ArrowError> { |
| 493 | array |
| 494 | .into_iter() |
| 495 | .collect::<Decimal256Array>() |
| 496 | .with_precision_and_scale(precision, scale) |
| 497 | } |
| 498 | |
| 499 | // Get a selection of datatypes to try and cast to |
| 500 | fn get_all_types() -> Vec<DataType> { |
nothing calls this directly
no test coverage detected