()
| 1079 | |
| 1080 | #[test] |
| 1081 | fn test_decimal_validation() { |
| 1082 | let mut builder = Decimal128Builder::with_capacity(4); |
| 1083 | builder.append_value(10000); |
| 1084 | builder.append_value(20000); |
| 1085 | let array = builder.finish(); |
| 1086 | |
| 1087 | array.into_data().validate_full().unwrap(); |
| 1088 | } |
| 1089 | |
| 1090 | #[test] |
| 1091 | #[cfg(not(feature = "force_validate"))] |
nothing calls this directly
no test coverage detected