| 123 | using ScalarType = typename TypeTraits<ArrowType>::ScalarType; |
| 124 | |
| 125 | void TestBasics() { AssertDecimalFromString("234.23445", DecimalType(23423445), 8, 5); } |
| 126 | |
| 127 | void TestStringStartingWithPlus() { |
| 128 | AssertDecimalFromString("+234.567", DecimalType(234567), 6, 3); |
no test coverage detected