morrySnow commented on code in PR #37179: URL: https://github.com/apache/doris/pull/37179#discussion_r1665710708
########## fe/fe-core/src/main/java/org/apache/doris/nereids/rules/rewrite/ForeignKeyContext.java: ########## @@ -136,13 +136,32 @@ void putAlias(Slot newSlot, Slot originSlot) { } } + private boolean isHiddenConjunct(Expression expression) { + for (Slot slot : expression.getInputSlots()) { + if (slot instanceof SlotReference) { + SlotReference slotReference = (SlotReference) slot; + if (slotReference.getColumn().isPresent()) { + Column column = slotReference.getColumn().get(); + if (column.isDeleteSignColumn() || column.isVersionColumn()) { Review Comment: so version column still need? -- 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