| 3358 | } |
| 3359 | |
| 3360 | std::shared_ptr<DataType> decimal64(int32_t precision, int32_t scale) { |
| 3361 | return std::make_shared<Decimal64Type>(precision, scale); |
| 3362 | } |
| 3363 | |
| 3364 | std::shared_ptr<DataType> decimal128(int32_t precision, int32_t scale) { |
| 3365 | return std::make_shared<Decimal128Type>(precision, scale); |
no outgoing calls