sql1 = "select a.col1, b.col2, c.col2 from a, b, c where c.col1=3 " +
"order by a.col1, c.col1";
rs = s.executeQuery(sql1);
rtsp = SQLUtilities.getRuntimeStatisticsParser(s);
assertTrue(rtsp.whatSortingRequired());
rs = s.executeQuery(sql1);
result = new String[][] {
{"1", "2", "3"},{"1", "2", "3"}, {"1", "2", "3"},
{"1", "2", "3"},{"1", "2", "3"}, {"1", "2", "3"},
{"1", "2", "3"},{"1", "2", "3"}};