Skip to content

Commit

Permalink
fixed baiyangtx's comments.
Browse files Browse the repository at this point in the history
  • Loading branch information
YesOrNo828 committed Dec 13, 2023
1 parent 9a6b522 commit cc89bce
Show file tree
Hide file tree
Showing 2 changed files with 0 additions and 38 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@
package com.netease.arctic.flink.catalog.factories;

import com.netease.arctic.flink.catalog.ArcticCatalog;
import org.apache.flink.configuration.ConfigOption;
import org.apache.flink.table.catalog.Catalog;

import java.util.Set;

/**
* The factory to create {@link ArcticCatalog} with {@link
Expand All @@ -34,19 +30,4 @@ public class MixedHiveCatalogFactory extends ArcticCatalogFactory {
public String factoryIdentifier() {
return ArcticCatalogFactoryOptions.MIXED_HIVE_IDENTIFIER;
}

@Override
public Catalog createCatalog(Context context) {
return super.createCatalog(context);
}

@Override
public Set<ConfigOption<?>> requiredOptions() {
return super.requiredOptions();
}

@Override
public Set<ConfigOption<?>> optionalOptions() {
return super.optionalOptions();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -19,10 +19,6 @@
package com.netease.arctic.flink.catalog.factories;

import com.netease.arctic.flink.catalog.ArcticCatalog;
import org.apache.flink.configuration.ConfigOption;
import org.apache.flink.table.catalog.Catalog;

import java.util.Set;

/**
* The factory to create {@link ArcticCatalog} with {@link
Expand All @@ -34,19 +30,4 @@ public class MixedIcebergCatalogFactory extends ArcticCatalogFactory {
public String factoryIdentifier() {
return ArcticCatalogFactoryOptions.MIXED_ICEBERG_IDENTIFIER;
}

@Override
public Catalog createCatalog(Context context) {
return super.createCatalog(context);
}

@Override
public Set<ConfigOption<?>> requiredOptions() {
return super.requiredOptions();
}

@Override
public Set<ConfigOption<?>> optionalOptions() {
return super.optionalOptions();
}
}

0 comments on commit cc89bce

Please sign in to comment.