Skip to content

Commit

Permalink
added test for issue #716
Browse files Browse the repository at this point in the history
  • Loading branch information
wumpz committed Nov 22, 2018
1 parent 4854438 commit f06b197
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -3264,6 +3264,11 @@ public void testNotNotIssue() throws JSQLParserException {
assertSqlCanBeParsedAndDeparsed("SELECT VALUE1, VALUE2 FROM FOO WHERE NOT BAR LIKE '*%'");
}

@Test
public void testTrueFalseLiteral() throws JSQLParserException {
assertSqlCanBeParsedAndDeparsed("SELECT * FROM tbl WHERE true OR clm1 = 3");
}

@Test
public void testRawStringExpressionIssue656() throws JSQLParserException {
for (String c : new String[]{"u", "e", "n", "r", "b", "rb"}) {
Expand Down

0 comments on commit f06b197

Please sign in to comment.