Skip to content

Commit ce8eef8

Browse files
committed
fixes #999
1 parent 325ccb0 commit ce8eef8

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
@@ -4124,4 +4124,9 @@ public void testKeyWordView() throws JSQLParserException {
41244124
public void testPreserveAndOperator() throws JSQLParserException {
41254125
assertSqlCanBeParsedAndDeparsed("SELECT * FROM mytable WHERE 1 = 2 && 2 = 3");
41264126
}
4127+
4128+
@Test
4129+
public void testPreserveAndOperator_2() throws JSQLParserException {
4130+
assertSqlCanBeParsedAndDeparsed("SELECT * FROM mytable WHERE (field_1 && ?)");
4131+
}
41274132
}

0 commit comments

Comments
 (0)