XieJiann commented on code in PR #23627: URL: https://github.com/apache/doris/pull/23627#discussion_r1309609277
########## fe/fe-core/src/main/java/org/apache/doris/nereids/trees/expressions/functions/IdenticalSignature.java: ########## @@ -33,6 +35,12 @@ public interface IdenticalSignature extends ComputeSignature { static boolean isIdentical(DataType signatureType, DataType realType) { try { // TODO: copy matchesType to DataType + // TODO: resolve AnyDataType invoke toCatalogDataType + if (signatureType instanceof ArrayType) { + if (((ArrayType) signatureType).getItemType() instanceof AnyDataType) { + return false; + } + } Review Comment: return null /special catalog type for any data type may be better? -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org