}
public void test_13() throws Exception {
String sql = "SELECT STRCMP(@s1, @s2), STRCMP(@s3, @s4);";
SQLStatementParser parser = new MySqlStatementParser(sql);
List<SQLStatement> stmtList = parser.parseStatementList();
String text = output(stmtList);
Assert.assertEquals("SELECT STRCMP(@s1, @s2), STRCMP(@s3, @s4);", text);
}