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

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


The following commit(s) were added to refs/heads/master by this push:
     new e173216ecd0 [MINOR] Fix build error on master (#13075)
e173216ecd0 is described below

commit e173216ecd067d86a36712c5530e5c9a3a192a15
Author: Y Ethan Guo <[email protected]>
AuthorDate: Wed Apr 2 14:23:35 2025 -0700

    [MINOR] Fix build error on master (#13075)
---
 .../sql/hudi/command/procedures/PartitionBucketIndexManager.scala      | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git 
a/hudi-spark-datasource/hudi-spark/src/main/scala/org/apache/spark/sql/hudi/command/procedures/PartitionBucketIndexManager.scala
 
b/hudi-spark-datasource/hudi-spark/src/main/scala/org/apache/spark/sql/hudi/command/procedures/PartitionBucketIndexManager.scala
index ad401818c37..f6b546cc4ab 100644
--- 
a/hudi-spark-datasource/hudi-spark/src/main/scala/org/apache/spark/sql/hudi/command/procedures/PartitionBucketIndexManager.scala
+++ 
b/hudi-spark-datasource/hudi-spark/src/main/scala/org/apache/spark/sql/hudi/command/procedures/PartitionBucketIndexManager.scala
@@ -229,7 +229,8 @@ class PartitionBucketIndexManager extends BaseProcedure
           metaClient.getTableConfig.getProps,
           0,
           java.lang.Long.MAX_VALUE,
-          HoodieReaderConfig.MERGE_USE_RECORD_POSITIONS.defaultValue())
+          HoodieReaderConfig.MERGE_USE_RECORD_POSITIONS.defaultValue(),
+          false)
         fileGroupReader.initRecordIterators()
         val iterator = 
fileGroupReader.getClosableIterator.asInstanceOf[HoodieFileGroupReader.HoodieFileGroupReaderIterator[InternalRow]]
         iterator.asScala

Reply via email to