(data: Vec<Option<i128>>)
| 598 | } |
| 599 | |
| 600 | fn create_decimal_array(data: Vec<Option<i128>>) -> Decimal128Array { |
| 601 | data.into_iter() |
| 602 | .collect::<Decimal128Array>() |
| 603 | .with_precision_and_scale(23, 6) |
| 604 | .unwrap() |
| 605 | } |
| 606 | |
| 607 | #[test] |
| 608 | fn test_decimal_equal() { |
no test coverage detected