@Override
public Range getRange() throws T2Exception, T2DBException {
Range result = super.getRange();
if (range != null)
result = result.intersection(range);
else {
if (updates != null) {
result = result.union(updates.getRange());
}
if (deletes != null) {