expColNames = new String[] { "A", "I" };
JDBC.assertColumnNames(rs, expColNames);
JDBC.assertDrainResults(rs, 0);
p = SQLUtilities.getRuntimeStatisticsParser(st);
assertTrue("Expected hash join", p.usedHashJoin());
assertTrue("Expected index scan on T3", p.usedIndexScan("T3"));
assertTrue("Expected index scan on T4", p.usedIndexScan("T4"));
// Same as
// above but without the inner predicate (so no hash on T6).