| 1240 | const static int32_t MAX_PRECISION_64 = 18; |
| 1241 | |
| 1242 | static inline bool isDecimal64(const Type& type) { |
| 1243 | return type.getPrecision() > 0 && type.getPrecision() <= MAX_PRECISION_64; |
| 1244 | } |
| 1245 | |
| 1246 | #define CASE_CREATE_FROM_DECIMAL_READER(TYPE, TO) \ |
| 1247 | case TYPE: { \ |
no test coverage detected