[MINOR] Adding a deprecated constructor to AbstractSyncHoodieClient (#3902)
This commit is contained in:
committed by
GitHub
parent
f239187da8
commit
f9bc3e03e5
@@ -56,6 +56,12 @@ public abstract class AbstractSyncHoodieClient {
|
|||||||
private final boolean useFileListingFromMetadata;
|
private final boolean useFileListingFromMetadata;
|
||||||
private final boolean withOperationField;
|
private final boolean withOperationField;
|
||||||
|
|
||||||
|
@Deprecated
|
||||||
|
public AbstractSyncHoodieClient(String basePath, boolean assumeDatePartitioning, boolean useFileListingFromMetadata,
|
||||||
|
boolean verifyMetadataFileListing, boolean withOperationField, FileSystem fs) {
|
||||||
|
this(basePath, assumeDatePartitioning, useFileListingFromMetadata, withOperationField, fs);
|
||||||
|
}
|
||||||
|
|
||||||
public AbstractSyncHoodieClient(String basePath, boolean assumeDatePartitioning, boolean useFileListingFromMetadata,
|
public AbstractSyncHoodieClient(String basePath, boolean assumeDatePartitioning, boolean useFileListingFromMetadata,
|
||||||
boolean withOperationField, FileSystem fs) {
|
boolean withOperationField, FileSystem fs) {
|
||||||
this.metaClient = HoodieTableMetaClient.builder().setConf(fs.getConf()).setBasePath(basePath).setLoadActiveTimelineOnLoad(true).build();
|
this.metaClient = HoodieTableMetaClient.builder().setConf(fs.getConf()).setBasePath(basePath).setLoadActiveTimelineOnLoad(true).build();
|
||||||
|
|||||||
4
pom.xml
4
pom.xml
@@ -1064,10 +1064,6 @@
|
|||||||
<id>confluent</id>
|
<id>confluent</id>
|
||||||
<url>https://packages.confluent.io/maven/</url>
|
<url>https://packages.confluent.io/maven/</url>
|
||||||
</repository>
|
</repository>
|
||||||
<!--<repository>
|
|
||||||
<id>pentaho.org</id>
|
|
||||||
<url>https://public.nexus.pentaho.org/repository/proxy-public-3rd-party-release/</url>
|
|
||||||
</repository>-->
|
|
||||||
</repositories>
|
</repositories>
|
||||||
|
|
||||||
<profiles>
|
<profiles>
|
||||||
|
|||||||
Reference in New Issue
Block a user