| 3354 | } |
| 3355 | |
| 3356 | std::shared_ptr<DataType> decimal32(int32_t precision, int32_t scale) { |
| 3357 | return std::make_shared<Decimal32Type>(precision, scale); |
| 3358 | } |
| 3359 | |
| 3360 | std::shared_ptr<DataType> decimal64(int32_t precision, int32_t scale) { |
| 3361 | return std::make_shared<Decimal64Type>(precision, scale); |
no outgoing calls