}
protected void runHCatImport(List<String> addlArgsArray,
int totalRecords, String table, ColumnGenerator[] cols,
String[] cNames, boolean dontCreate, boolean isQuery) throws Exception {
CreateMode mode = CreateMode.CREATE;
if (dontCreate) {
mode = CreateMode.NO_CREATION;
}
HCatSchema tblSchema =
utils.createHCatTable(mode, totalRecords, table, cols);