| 723 | } |
| 724 | |
| 725 | Decimal128 Dec128(std::string_view value) { |
| 726 | Decimal128 dec; |
| 727 | int32_t scale = 0; |
| 728 | int32_t precision = 0; |
| 729 | DCHECK_OK(Decimal128::FromString(value, &dec, &precision, &scale)); |
| 730 | return dec; |
| 731 | } |
| 732 | |
| 733 | TEST(DecimalConversion, Basics) { |
| 734 | AssertConversion<Decimal128Type, Decimal128>( |