*/
Iterator<ConnectorTableInfo> tableInfoIt = conn.getTableinfo().iterator();
//Only populate partitions in use if export is actually happening
Set<Integer> partitionsInUse = new HashSet<Integer>();
while (tableInfoIt.hasNext()) {
ConnectorTableInfo next = tableInfoIt.next();
Table table = next.getTable();
addDataSources(table, hostId, partitions);
partitionsInUse.addAll(partitions);
}