737475767778798081
String value = conf.get(key); if (value == null) { throw new NullPointerException("No HiveTableSchema with key " + key + " found"); } HiveTableSchema hiveTableSchema = new HiveApiTableSchema(); Writables.readFieldsFromEncodedStr(value, hiveTableSchema); return hiveTableSchema; }
109110111112113114115116117
93949596979899100101
/** * Constructor for reflection */ public HiveApiInputSplit() { tableSchema = new HiveApiTableSchema(); inputSplitData = new InputSplitData(); columnIds = Lists.newArrayList(); }
4445464748495051
/** * Constructor */ public InputInfo() { tableSchema = new HiveApiTableSchema(); columnIds = Lists.newArrayList(); }
717273747576777879