// abuse of compound indexes for partial GT filters.
// An old issue only brought to light by the addition of a compound index to this suite.
cr = client.callProcedure("@AdHoc", "select count(*) from P1 where ABS(ID) > 9");
assertEquals(ClientResponse.SUCCESS, cr.getStatus());
r = cr.getResults()[0];
assertEquals(5, r.asScalarLong()); // used to get 6, matching like >=
initialLoad(client, "R1");
cr = client.callProcedure("WHERE_ABS");
assertEquals(ClientResponse.SUCCESS, cr.getStatus());