| 180 | } |
| 181 | |
| 182 | static bool hasImplicitCastList(const LogicalType& srcType, const LogicalType& dstType) { |
| 183 | return CastFunction::hasImplicitCast(ListType::getChildType(srcType), |
| 184 | ListType::getChildType(dstType)); |
| 185 | } |
| 186 | |
| 187 | static bool hasImplicitCastArray(const LogicalType& srcType, const LogicalType& dstType) { |
| 188 | if (ArrayType::getNumElements(srcType) != ArrayType::getNumElements(dstType)) { |
no test coverage detected