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 325ccb0 commit ce8eef8Copy full SHA for ce8eef8
src/test/java/net/sf/jsqlparser/statement/select/SelectTest.java
@@ -4124,4 +4124,9 @@ public void testKeyWordView() throws JSQLParserException {
4124
public void testPreserveAndOperator() throws JSQLParserException {
4125
assertSqlCanBeParsedAndDeparsed("SELECT * FROM mytable WHERE 1 = 2 && 2 = 3");
4126
}
4127
+
4128
+ @Test
4129
+ public void testPreserveAndOperator_2() throws JSQLParserException {
4130
+ assertSqlCanBeParsedAndDeparsed("SELECT * FROM mytable WHERE (field_1 && ?)");
4131
+ }
4132
0 commit comments