}
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[] = { UsersConstants.TABLENAME_USERS };
LatchableProcedureCallback callback = new LatchableProcedureCallback(1);
// long evictBytes[] = { Integer.MAX_VALUE };
long evictBytes[] = {1024 * 10};
int numBlocks[] = { 1 };
int remote_partition = catalogContext.getAllPartitionIdArray()[1];
System.out.printf("Evicting data at partition %d...\n", remote_partition);
String children[] = null;
Object params[] = { remote_partition, tableNames, children, evictBytes, numBlocks };
boolean result = client.callProcedure(callback, procName, params);
assertTrue(result);