| 1001 | } // namespace |
| 1002 | |
| 1003 | Status Decimal32::FromString(std::string_view s, Decimal32* out, int32_t* precision, |
| 1004 | int32_t* scale) { |
| 1005 | return SimpleDecimalFromString("decimal32", s, out, precision, scale); |
| 1006 | } |
| 1007 | |
| 1008 | Status Decimal32::FromString(const std::string& s, Decimal32* out, int32_t* precision, |
| 1009 | int32_t* scale) { |
nothing calls this directly
no test coverage detected