| 36 | } |
| 37 | |
| 38 | bool isUInt64ThatCanBeInt64(const DataTypePtr & type) |
| 39 | { |
| 40 | const DataTypeUInt64 * uint64_type = typeid_cast<const DataTypeUInt64 *>(type.get()); |
| 41 | return uint64_type && uint64_type->canUnsignedBeSigned(); |
| 42 | } |
| 43 | |
| 44 | |
| 45 | void registerDataTypeNumbers(DataTypeFactory & factory) |
no test coverage detected