assertEquals(ClientResponse.SUCCESS, cr.getStatus());
result = cr.getResults()[0];
assertEquals(1, result.getRowCount());
assertTrue(result.advanceRow());
result.getString(0);
assertTrue(result.wasNull());
// Test that FIELD function is case-sensitive
testProcWithValidJSON(EMPTY_TABLE, client, "IdFieldProc", "tag", "one");
testProcWithValidJSON(EMPTY_TABLE, client, "IdFieldProc", "tag", "ONE");
testProcWithValidJSON(TABLE_ROW1, client, "IdFieldProc", "tag", "One");