| 193 | } |
| 194 | |
| 195 | static bool hasImplicitCastArrayToList(const LogicalType& srcType, const LogicalType& dstType) { |
| 196 | return CastFunction::hasImplicitCast(ArrayType::getChildType(srcType), |
| 197 | ListType::getChildType(dstType)); |
| 198 | } |
| 199 | |
| 200 | static bool hasImplicitCastListToArray(const LogicalType& srcType, const LogicalType& dstType) { |
| 201 | return CastFunction::hasImplicitCast(ListType::getChildType(srcType), |
no test coverage detected