}
private Map<Integer, VoltTable> evictData(Client client) throws Exception {
// System.err.printf("Evicting data...");
String procName = VoltSystemProcedure.procCallName(EvictTuples.class);
CatalogContext catalogContext = this.getCatalogContext();
String tableNames[] = { VoterConstants.TABLENAME_VOTES };
LatchableProcedureCallback callback = new LatchableProcedureCallback(catalogContext.numberOfPartitions);
// long evictBytes[] = { Integer.MAX_VALUE };
long evictBytes[] = {10000};
int numBlocks[] = { 1 };
for (int partition : catalogContext.getAllPartitionIds()) {
// System.err.printf("Evicting data at partition %d...\n", partition);
String children[] = null;
Object params[] = { partition, tableNames, children, evictBytes, numBlocks };
boolean result = client.callProcedure(callback, procName, params);
assertTrue(result);