Skip to content

Commit 0f9bb4e

Browse files
committed
1 parent 10e8e25 commit 0f9bb4e

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

src/test/java/net/sf/jsqlparser/statement/select/SelectTest.java

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -3470,6 +3470,11 @@ public void testDateArithmentic5() throws JSQLParserException {
34703470
assertSqlCanBeParsedAndDeparsed("SELECT CASE WHEN CURRENT_DATE BETWEEN (CURRENT_DATE - 1 DAY) AND ('2019-01-01') THEN 1 ELSE 0 END FROM SYSIBM.SYSDUMMY1");
34713471
}
34723472

3473+
@Test
3474+
public void testNotProblemIssue721() throws JSQLParserException {
3475+
assertSqlCanBeParsedAndDeparsed("SELECT * FROM dual WHERE NOT regexp_like('a', '[\\w]+')");
3476+
}
3477+
34733478
@Test
34743479
public void testRawStringExpressionIssue656() throws JSQLParserException {
34753480
for (String c : new String[]{"u", "e", "n", "r", "b", "rb"}) {

0 commit comments

Comments
 (0)