This is an automated email from the ASF dual-hosted git repository. morningman pushed a commit to branch branch-2.1 in repository https://gitbox.apache.org/repos/asf/doris.git
The following commit(s) were added to refs/heads/branch-2.1 by this push: new 9bb9a56a48b [opt](paimon)Remove unnecessary fields for 2.1 (#44906) (#45118) 9bb9a56a48b is described below commit 9bb9a56a48bfca0b95ec59d54028ceeaefd0c1e8 Author: wuwenchi <wuwen...@selectdb.com> AuthorDate: Sat Dec 7 06:45:53 2024 +0800 [opt](paimon)Remove unnecessary fields for 2.1 (#44906) (#45118) bp:#44906 --- .../org/apache/doris/datasource/paimon/source/PaimonScanNode.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/fe/fe-core/src/main/java/org/apache/doris/datasource/paimon/source/PaimonScanNode.java b/fe/fe-core/src/main/java/org/apache/doris/datasource/paimon/source/PaimonScanNode.java index bf917804fb7..5009ec3c904 100644 --- a/fe/fe-core/src/main/java/org/apache/doris/datasource/paimon/source/PaimonScanNode.java +++ b/fe/fe-core/src/main/java/org/apache/doris/datasource/paimon/source/PaimonScanNode.java @@ -183,9 +183,7 @@ public class PaimonScanNode extends FileQueryScanNode { fileDesc.setDbId(((PaimonExternalTable) source.getTargetTable()).getDbId()); fileDesc.setTblId(source.getTargetTable().getId()); fileDesc.setLastUpdateTime(source.getTargetTable().getUpdateTime()); - fileDesc.setPaimonTable(encodeObjectToString(source.getPaimonTable())); - // The hadoop conf should be same with - // PaimonExternalCatalog.createCatalog()#getConfiguration() + // The hadoop conf should be same with PaimonExternalCatalog.createCatalog()#getConfiguration() fileDesc.setHadoopConf(source.getCatalog().getCatalogProperty().getHadoopProperties()); Optional<DeletionFile> optDeletionFile = paimonSplit.getDeletionFile(); if (optDeletionFile.isPresent()) { --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org