SteNicholas commented on a change in pull request #3633:
URL: https://github.com/apache/hudi/pull/3633#discussion_r706139169
##########
File path:
hudi-common/src/test/java/org/apache/hudi/common/testutils/HoodieTestUtils.java
##########
@@ -63,9 +63,10 @@ public static HoodieTableMetaClient init(String basePath,
HoodieTableType tableT
return init(getDefaultHadoopConf(), basePath, tableType);
}
- public static HoodieTableMetaClient init(String basePath, HoodieTableType
tableType, String bootstrapBasePath) throws IOException {
+ public static HoodieTableMetaClient init(String basePath, HoodieTableType
tableType, String bootstrapBasePath, boolean bootstrapIndex) throws IOException
{
Properties props = new Properties();
props.setProperty(HoodieTableConfig.BOOTSTRAP_BASE_PATH.key(),
bootstrapBasePath);
+ props.put(HoodieTableConfig.BOOTSTRAP_INDEX_ENABLE.key(), bootstrapIndex);
Review comment:
```suggestion
props. setProperty(HoodieTableConfig.BOOTSTRAP_INDEX_ENABLE.key(),
bootstrapIndex);
```
--
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]