final String testString = "袪被";
try {
// Intentionally using a one byte string to make sure length preceded strings are handled correctly in the EE.
client.callProcedure("InsertOrderLine", 2L, 1L, 1L, 2L, 2L, 2L, 2L, 2L, 1.5, "a");
client.callProcedure("InsertOrderLine", 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1L, 1.5, testString);
client.callProcedure("InsertOrderLine", 3L, 1L, 1L, 3L, 3L, 3L, 3L, 3L, 1.5, "def");
VoltTable[] results = client.callProcedure("SelectOrderLineByDistInfo", testString).getResults();
assertEquals(1, results.length);
VoltTable table = results[0];
assertTrue(table.getRowCount() == 1);
VoltTableRow row = table.fetchRow(0);