Package org.apache.hive.hcatalog.data.transfer.impl

Examples of org.apache.hive.hcatalog.data.transfer.impl.HCatInputFormatReader


   */
  public static HCatReader getHCatReader(final ReadEntity re,
                       final Map<String, String> config) {
    // In future, this may examine ReadEntity and/or config to return
    // appropriate HCatReader
    return new HCatInputFormatReader(re, config);
  }
View Full Code Here


   * @return {@link HCatReader}
   */
  public static HCatReader getHCatReader(final InputSplit split,
                       final Configuration config, StateProvider sp) {
    // In future, this may examine config to return appropriate HCatReader
    return new HCatInputFormatReader(split, config, sp);
  }
View Full Code Here

   */
  public static HCatReader getHCatReader(final ReadEntity re,
                       final Map<String, String> config) {
    // In future, this may examine ReadEntity and/or config to return
    // appropriate HCatReader
    return new HCatInputFormatReader(re, config);
  }
View Full Code Here

   */
  public static HCatReader getHCatReader(final ReaderContext context,
                                         int slaveNumber,
                                         StateProvider sp) {
    // In future, this may examine config to return appropriate HCatReader
    return new HCatInputFormatReader(context, slaveNumber, sp);
  }
View Full Code Here

TOP

Related Classes of org.apache.hive.hcatalog.data.transfer.impl.HCatInputFormatReader

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.