summary.put(COLUMN_NAME, columnName);
summary.put(DELTA, delta);
}
protected void run(Fixture fixture, Parse table) {
Table t = new Table(table);
try {
table = t.incrementColumnValuesByDelta(columnName, delta);
} catch (InvalidInputException e) {
// exception(table, e);
}
super.run(fixture, table);
}