| 3362 | } |
| 3363 | |
| 3364 | std::shared_ptr<DataType> decimal128(int32_t precision, int32_t scale) { |
| 3365 | return std::make_shared<Decimal128Type>(precision, scale); |
| 3366 | } |
| 3367 | |
| 3368 | std::shared_ptr<DataType> decimal256(int32_t precision, int32_t scale) { |
| 3369 | return std::make_shared<Decimal256Type>(precision, scale); |
no outgoing calls