AST ast = new AST((DMLStatementNode)stmt, parser.getParameterList());
PlanContext plan = new PlanContext(rules, ast);
rules.applyRules(plan);
String result = plan.planString();
if (Boolean.parseBoolean(properties.getProperty("showParameterTypes", "false")))
result = ast.formatParameterTypes() + result;
return result;
}
@Override
public void checkResult(String result) throws IOException {