lokeshj1703 commented on code in PR #12948: URL: https://github.com/apache/hudi/pull/12948#discussion_r2003121584
########## hudi-client/hudi-client-common/src/main/java/org/apache/hudi/metadata/HoodieBackedTableMetadataWriter.java: ########## @@ -155,8 +155,9 @@ public abstract class HoodieBackedTableMetadataWriter<I> implements HoodieTableM protected StorageConfiguration<?> storageConf; protected final transient HoodieEngineContext engineContext; protected final List<MetadataPartitionType> enabledPartitionTypes; + // Is the MDT bootstrapped and ready to be read from - private boolean initialized = false; + boolean initialized = false; Review Comment: Since the classes are in the same package, the default package private modifier is sufficient here. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
