File tree Expand file tree Collapse file tree 1 file changed +15
-0
lines changed
src/test/java/net/sf/jsqlparser/statement/select Expand file tree Collapse file tree 1 file changed +15
-0
lines changed Original file line number Diff line number Diff line change @@ -4341,4 +4341,19 @@ public void testKeywordSequenceIssue1075() throws JSQLParserException {
4341
4341
public void testKeywordSequenceIssue1074 () throws JSQLParserException {
4342
4342
assertSqlCanBeParsedAndDeparsed ("SELECT * FROM t_user WITH (NOLOCK)" );
4343
4343
}
4344
+
4345
+ @ Test
4346
+ public void testContionItemsSelectedIssue1077 () throws JSQLParserException {
4347
+ assertSqlCanBeParsedAndDeparsed ("SELECT 1 > 0" );
4348
+ }
4349
+
4350
+ @ Test
4351
+ public void testExistsKeywordIssue1076 () throws JSQLParserException {
4352
+ assertSqlCanBeParsedAndDeparsed ("SELECT EXISTS (4)" );
4353
+ }
4354
+
4355
+ @ Test
4356
+ public void testExistsKeywordIssue1076_1 () throws JSQLParserException {
4357
+ assertSqlCanBeParsedAndDeparsed ("SELECT EXISTS (SELECT mycol FROM mytable)" );
4358
+ }
4344
4359
}
You can’t perform that action at this time.
0 commit comments