wsjz commented on code in PR #15418: URL: https://github.com/apache/doris/pull/15418#discussion_r1058943350
########## fe/fe-core/src/main/java/org/apache/doris/planner/external/IcebergScanProvider.java: ########## @@ -168,6 +176,18 @@ public List<InputSplit> getSplits(List<Expr> exprs) throws UserException { org.apache.iceberg.Table table = getIcebergTable(); TableScan scan = table.newScan(); + TableSnapshot tableSnapshot = desc.getRef().getTableSnapshot(); + if (tableSnapshot != null) { + TableSnapshot.VersionType type = tableSnapshot.getType(); + if (type == TableSnapshot.VersionType.VERSION) { + scan = scan.useSnapshot(tableSnapshot.getVersion()); Review Comment: catch illegalArgument -- 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