}
public void testFunction() throws ParseException {
String sql = "SELECT * FROM aaa WHERE round(a) = round(b) AND date(a,b) = diff(date(a),'1928-03-21')";
SqlCompiler compiler = new SqlCompiler();
CompiledString compiled = compiler.compileString(sql);
StringBuffer sb = new StringBuffer();
compiled.dump(sb);
System.out.println(sb.toString());
HashMap<String, Object> attributes = new HashMap<String, Object>();