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

czweng 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 19119e3c0 [hotfix] Fix compile error in ParquetReaderFactory
19119e3c0 is described below

commit 19119e3c073619bc5db9ce52c151527af919b8cc
Author: tsreaper <[email protected]>
AuthorDate: Wed Nov 13 16:02:39 2024 +0800

    [hotfix] Fix compile error in ParquetReaderFactory
---
 .../java/org/apache/paimon/format/parquet/ParquetReaderFactory.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git 
a/paimon-format/src/main/java/org/apache/paimon/format/parquet/ParquetReaderFactory.java
 
b/paimon-format/src/main/java/org/apache/paimon/format/parquet/ParquetReaderFactory.java
index cede205f4..53b4b1634 100644
--- 
a/paimon-format/src/main/java/org/apache/paimon/format/parquet/ParquetReaderFactory.java
+++ 
b/paimon-format/src/main/java/org/apache/paimon/format/parquet/ParquetReaderFactory.java
@@ -104,7 +104,7 @@ public class ParquetReaderFactory implements 
FormatReaderFactory {
     }
 
     @Override
-    public RecordReader<InternalRow> createReader(FormatReaderFactory.Context 
context)
+    public FileRecordReader<InternalRow> 
createReader(FormatReaderFactory.Context context)
             throws IOException {
         ParquetReadOptions.Builder builder =
                 ParquetReadOptions.builder().withRange(0, context.fileSize());

Reply via email to