| 281 | constexpr static int32_t max_precision() { return DecimalType::kMaxPrecision; } |
| 282 | |
| 283 | std::shared_ptr<DataType> type(int32_t precision, int32_t scale) { |
| 284 | return std::make_shared<DecimalType>(precision, scale); |
| 285 | } |
| 286 | |
| 287 | void CheckArray(const Array& array) { |
| 288 | ASSERT_OK(array.ValidateFull()); |
no outgoing calls
no test coverage detected