This is an automated email from the ASF dual-hosted git repository.

lzljs3620320 pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/paimon.git


The following commit(s) were added to refs/heads/master by this push:
     new 5ff77ac489 [hotfix] Correct dataSchemaRowType in FormatReaderMapping
5ff77ac489 is described below

commit 5ff77ac489ab8b80bd36df99292c5bbd0e9c801a
Author: JingsongLi <jingsongl...@gmail.com>
AuthorDate: Tue Aug 26 19:37:43 2025 +0800

    [hotfix] Correct dataSchemaRowType in FormatReaderMapping
---
 .../src/main/java/org/apache/paimon/utils/FormatReaderMapping.java    | 4 +++-
 1 file changed, 3 insertions(+), 1 deletion(-)

diff --git 
a/paimon-core/src/main/java/org/apache/paimon/utils/FormatReaderMapping.java 
b/paimon-core/src/main/java/org/apache/paimon/utils/FormatReaderMapping.java
index 8cbcd78eb4..2a1e0af0d8 100644
--- a/paimon-core/src/main/java/org/apache/paimon/utils/FormatReaderMapping.java
+++ b/paimon-core/src/main/java/org/apache/paimon/utils/FormatReaderMapping.java
@@ -231,7 +231,9 @@ public class FormatReaderMapping {
                     formatDiscover
                             .discover(formatIdentifier)
                             .createReaderFactory(
-                                    dataSchema.logicalRowType(), 
actualReadRowType, readFilters),
+                                    new RowType(allDataFieldsInFile),
+                                    actualReadRowType,
+                                    readFilters),
                     dataSchema,
                     readFilters,
                     systemFields,

Reply via email to