public class SqlParserTest extends TestCase {
public void testSimple() throws ParseException {
String sql = "SELECT * FROM hamster where aaa = 'alpha' AND bbb='beta'";
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>();