String columnName = columnNames[ii];
if (t.getColumn(columnName) == null) {
System.out.println("WTF, cannot find column " + columnName);
}
}
Sort tSort = new Sort(columnNames);
Table sortedTable = t.select(ExpressionParser.predicate("TRUE"),
tSort);
return sortedTable;
}