/********
* CARDINALITY METHODS ******
*/
public long getTableSize(String tableSchemaName) {
final TableInfo table = getTableInfo(tableSchemaName);
final long tableSize = table.getTableSize();
if (tableSize == SchemaParser.INVALID)
throw new RuntimeException(
"No information about size for table "
+ tableSchemaName
+ "\n Either add required information to schema "