wuwenchi commented on code in PR #29339: URL: https://github.com/apache/doris/pull/29339#discussion_r1438775202
########## fe/fe-core/src/main/java/org/apache/doris/planner/external/paimon/PaimonScanNode.java: ########## @@ -102,7 +107,11 @@ public void setPaimonParams(TFileRangeDesc rangeDesc, PaimonSplit paimonSplit) { TTableFormatFileDesc tableFormatFileDesc = new TTableFormatFileDesc(); tableFormatFileDesc.setTableFormatType(paimonSplit.getTableFormatType().value()); TPaimonFileDesc fileDesc = new TPaimonFileDesc(); - fileDesc.setPaimonSplit(encodeObjectToString(paimonSplit.getSplit())); + org.apache.paimon.table.source.Split split = paimonSplit.getSplit(); Review Comment: This `split` is the split used by paimon, so this split is only needed when using jni. If native is used, the value is null. -- 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