| 993 | } // namespace |
| 994 | |
| 995 | Status Decimal32::FromString(std::string_view s, Decimal32* out, int32_t* precision, |
| 996 | int32_t* scale) { |
| 997 | return SimpleDecimalFromString("decimal32", s, out, precision, scale); |
| 998 | } |
| 999 | |
| 1000 | Status Decimal32::FromString(const std::string& s, Decimal32* out, int32_t* precision, |
| 1001 | int32_t* scale) { |
nothing calls this directly
no test coverage detected