}
@Override
public boolean removeServerCache(byte[] tenantId, byte[] cacheId) throws SQLException {
TenantCache tenantCache = GlobalCache.getTenantCache((RegionCoprocessorEnvironment)this.getEnvironment(), tenantId == null ? null : new ImmutableBytesPtr(tenantId));
tenantCache.removeServerCache(new ImmutableBytesPtr(cacheId));
return true;
}
}