We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 295c114 commit 5aa6304Copy full SHA for 5aa6304
src/test/java/net/sf/jsqlparser/parser/CCJSqlParserUtilTest.java
@@ -120,4 +120,12 @@ public void testParseStatementsIssue691() throws Exception {
120
+ "SELECT * FROM dual;\n"
121
+ "SELECT * FROM dual;\n", result.toString());
122
}
123
+
124
+ @Test
125
+ public void testParseStatementsIssue691_2() throws Exception {
126
+ Statements result = CCJSqlParserUtil.parseStatements(
127
+ "select * from dual;\n"
128
+ + "---test");
129
+ assertEquals("SELECT * FROM dual;\n", result.toString());
130
+ }
131
0 commit comments