Package org.apache.drill.exec.store.dfs

Examples of org.apache.drill.exec.store.dfs.NamedFormatPluginConfig


  }

  @JsonProperty("format")
  public FormatPluginConfig getFormatConfig(){
    if (formatPlugin.getName() != null) {
      NamedFormatPluginConfig namedConfig = new NamedFormatPluginConfig();
      namedConfig.name = formatPlugin.getName();
      return namedConfig;
    } else {
      return formatPlugin.getConfig();
    }
View Full Code Here


  }

  @JsonProperty("format")
  public FormatPluginConfig getFormatConfig(){
    if (formatPlugin.getName() != null) {
      NamedFormatPluginConfig namedConfig = new NamedFormatPluginConfig();
      namedConfig.name = formatPlugin.getName();
      return namedConfig;
    } else {
      return formatPlugin.getConfig();
    }
View Full Code Here

TOP

Related Classes of org.apache.drill.exec.store.dfs.NamedFormatPluginConfig

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.