}
@Override
public ColumnStatistics getTableColumnStatistics(String dbName,
String tableName, List<String> colNames) throws MetaException, NoSuchObjectException {
ColumnStatistics sqlResult = getTableColumnStatisticsInternal(
dbName, tableName, colNames, true, false);
ColumnStatistics jdoResult = getTableColumnStatisticsInternal(
dbName, tableName, colNames, false, true);
verifyObjects(sqlResult, jdoResult, ColumnStatistics.class);
return sqlResult;
}