1
0

[HUDI-3810] Fixing lazy read for metadata log record readers (#5241)

This commit is contained in:
Sivabalan Narayanan
2022-04-07 15:40:51 -07:00
committed by GitHub
parent cd2c346df6
commit ef06e4a526

View File

@@ -60,7 +60,7 @@ public class HoodieMetadataMergedLogRecordReader extends HoodieMergedLogRecordSc
ExternalSpillableMap.DiskMapType diskMapType,
boolean isBitCaskDiskMapCompressionEnabled,
Option<InstantRange> instantRange, boolean allowFullScan) {
super(fs, basePath, logFilePaths, readerSchema, latestInstantTime, maxMemorySizeInBytes, false, false, bufferSize,
super(fs, basePath, logFilePaths, readerSchema, latestInstantTime, maxMemorySizeInBytes, true, false, bufferSize,
spillableMapBasePath, instantRange, diskMapType, isBitCaskDiskMapCompressionEnabled, false, allowFullScan, Option.of(partitionName), InternalSchema.getEmptyInternalSchema());
}