| 89 | } |
| 90 | |
| 91 | Decimal128 Decimal128FromInt128(int128_t value) { |
| 92 | return Decimal128(static_cast<int64_t>(value >> 64), |
| 93 | static_cast<uint64_t>(value & 0xFFFFFFFFFFFFFFFFULL)); |
| 94 | } |
| 95 | |
| 96 | template <typename DecimalType> |
| 97 | struct DecimalTraits {}; |
no test coverage detected