caiconghui commented on a change in pull request #4006: URL: https://github.com/apache/incubator-doris/pull/4006#discussion_r450222851
########## File path: fe/src/main/java/org/apache/doris/load/DeleteHandler.java ########## @@ -516,25 +537,22 @@ private void checkDeleteV2(OlapTable table, Partition partition, List<Predicate> } Map<Long, List<Column>> indexIdToSchema = table.getIndexIdToSchema(); for (MaterializedIndex index : partition.getMaterializedIndices(MaterializedIndex.IndexExtState.VISIBLE)) { + if (table.getBaseIndexId() == index.getId()) { + continue; Review comment: I find here double check, because base schema is equal to table schema? pre code has check table schema column 479 ~ 537 ---------------------------------------------------------------- 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. 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