morrySnow commented on code in PR #24967: URL: https://github.com/apache/doris/pull/24967#discussion_r1349611430
########## fe/fe-core/src/main/java/org/apache/doris/nereids/util/TypeCoercionUtils.java: ########## @@ -823,6 +823,10 @@ public static Expression processComparisonPredicate(ComparisonPredicate comparis Expression left = comparisonPredicate.left(); Expression right = comparisonPredicate.right(); + if (left.getDataType().isBitmapType() || right.getDataType().isBitmapType()) { + throw new AnalysisException("Unsupported bitmap type in expression: " + comparisonPredicate.toSql()); Review Comment: could not check here, because we need to support a in bitmap subquery. maybe we do not need do any change for nereids. Nereids comparison predicate do not accept bitmap already. -- 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