private final String name;
public HiveStoragePlugin(HiveStoragePluginConfig config, DrillbitContext context, String name) throws ExecutionSetupException {
this.config = config;
this.context = context;
this.schemaFactory = new HiveSchemaFactory(this, name, config.getHiveConfigOverride());
this.name = name;
}