"index=template_twenty \n" +
"where test.twenty = template.twenty " +
"and test.two = template.two").close();
checkEstimatedRowCount(conn,401000.625);
rtsp = SQLUtilities.getRuntimeStatisticsParser(s);
assertTrue(rtsp.usedSpecificIndexForIndexScan("TEMPLATE", "TEMPLATE_TWENTY"));
// join on twenty/two. template inner, NL, index=template_22, all rows.
s.executeQuery("select template.id from " +
"--DERBY-PROPERTIES joinOrder=fixed \n" +
"test, template --DERBY-PROPERTIES joinStrategy=nestedLoop, " +