This is an automated email from the ASF dual-hosted git repository.
codope pushed a change to branch master
in repository https://gitbox.apache.org/repos/asf/hudi.git
from 6fe9f969289 [HUDI-6588] Fix duplicate fileId on TM partial-failover
and recovery (#9357)
add c387f2a6dd3 [HUDI-6606] Use record level index with SQL equality
queries (#9308)
No new revisions were added by this update.
Summary of changes:
.../hudi/common/config/HoodieMetadataConfig.java | 4 +
.../scala/org/apache/hudi/HoodieFileIndex.scala | 9 +-
.../org/apache/hudi/RecordLevelIndexSupport.scala | 156 ++++++++++++
.../hudi/functional/RecordLevelIndexTestBase.scala | 283 +++++++++++++++++++++
.../hudi/functional/TestRecordLevelIndex.scala | 255 +------------------
.../functional/TestRecordLevelIndexWithSQL.scala | 56 ++++
6 files changed, 510 insertions(+), 253 deletions(-)
create mode 100644
hudi-spark-datasource/hudi-spark-common/src/main/scala/org/apache/hudi/RecordLevelIndexSupport.scala
create mode 100644
hudi-spark-datasource/hudi-spark/src/test/scala/org/apache/hudi/functional/RecordLevelIndexTestBase.scala
create mode 100644
hudi-spark-datasource/hudi-spark/src/test/scala/org/apache/hudi/functional/TestRecordLevelIndexWithSQL.scala