@Override
public List<ColumnStatisticsObj> getTableColumnStatistics(String dbName, String tableName,
List<String> colNames) throws NoSuchObjectException, MetaException, TException,
InvalidInputException, InvalidObjectException {
return client.get_table_statistics_req(
new TableStatsRequest(dbName, tableName, colNames)).getTableStats();
}