More sanity checking.

This commit is contained in:
Michael Bayne
2007-08-15 19:03:47 +00:00
parent 0175081c54
commit a68a6534a4
@@ -392,10 +392,10 @@ public abstract class DepotRepository
Class<T> type, final WhereClause key, CacheInvalidator invalidator, Object... fieldsValues)
throws PersistenceException
{
// sanity check
if (invalidator != null) {
invalidator.validateFlushType(type);
invalidator.validateFlushType(type); // sanity check
}
key.validateQueryType(type); // and another
// separate the arguments into keys and values
final String[] fields = new String[fieldsValues.length/2];
@@ -521,10 +521,10 @@ public abstract class DepotRepository
{
requireNotComputed(type, "updateLiteral");
// sanity check
if (invalidator != null) {
invalidator.validateFlushType(type);
invalidator.validateFlushType(type); // sanity check
}
key.validateQueryType(type); // and another
// separate the arguments into keys and values
final String[] fields = new String[fieldsToValues.size()];
@@ -667,6 +667,11 @@ public abstract class DepotRepository
Class<T> type, final WhereClause key, CacheInvalidator invalidator)
throws PersistenceException
{
if (invalidator != null) {
invalidator.validateFlushType(type); // sanity check
}
key.validateQueryType(type); // and another
DeleteClause<T> delete = new DeleteClause<T>(type, key);
final SQLBuilder builder = _ctx.getSQLBuilder(DepotTypes.getDepotTypes(_ctx, delete));
builder.newQuery(delete);