throws MetaException, NoSuchObjectException, TException {
String dbName = request.getDbName(), tblName = request.getTblName();
startFunction("get_table_statistics_req: db=" + dbName + " table=" + tblName);
TableStatsResult result = null;
try {
ColumnStatistics cs = getMS().getTableColumnStatistics(
dbName, tblName, request.getColNames());
result = new TableStatsResult(
cs == null ? Lists.<ColumnStatisticsObj>newArrayList() : cs.getStatsObj());
} finally {
endFunction("get_table_statistics_req: ", result == null, null, tblName);
}
return result;
}