table.addIndex(i1);
fields = new ArrayList<String>();
fields.add("c5");
fields.add("c4");
Index i2 = FMetaTestUtil.makeIndex(table, "i2", fields);
table.addIndex(i2);
String sql1 = "SELECT c1, c2, c3 from test where c4=1 and c5=2;";
String sql2 = "SELECT c1, c2, c3 from test where c5=2 and c4=1;";
String[] sqlList = { sql1, sql2 }; // sql1, sql2, sql3