response = client.callProcedure("DeleteT1", "c1");
assertEquals(1, getLongFromResponse(response));
response = client.callProcedure("LookupT1b", "b");
table = getSingleRowTable(response);
System.out.println(table.toJSONString());
// Try to repro a string memory management related crash when a no-op update corrupts an index.
response = client.callProcedure("UpdateT1b", "b", "a2");
assertEquals(1, getLongFromResponse(response));