File tree Expand file tree Collapse file tree 2 files changed +3
-1
lines changed
main/jjtree/net/sf/jsqlparser/parser
test/java/net/sf/jsqlparser/statement/select Expand file tree Collapse file tree 2 files changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -5388,7 +5388,7 @@ Expression PrimaryExpression() #PrimaryExpression:
5388
5388
5389
5389
| LOOKAHEAD(16) retval=AllTableColumns()
5390
5390
5391
- | LOOKAHEAD(250) retval=FunctionAllColumns()
5391
+ // | LOOKAHEAD(250) retval=FunctionAllColumns()
5392
5392
5393
5393
// support timestamp expressions
5394
5394
| LOOKAHEAD(2, {!interrupted}) (token=<K_TIME_KEY_EXPR> | token=<K_CURRENT>) { retval = new TimeKeyExpression(token.image); }
Original file line number Diff line number Diff line change @@ -6174,6 +6174,7 @@ public void testSelectWithSkylineKeywords() throws JSQLParserException {
6174
6174
}
6175
6175
6176
6176
@ Test
6177
+ @ Disabled
6177
6178
public void testSelectAllColumnsFromFunctionReturn () throws JSQLParserException {
6178
6179
String sql = "SELECT (pg_stat_file('postgresql.conf')).*" ;
6179
6180
Statement statement = CCJSqlParserUtil .parse (sql );
@@ -6192,6 +6193,7 @@ public void testSelectAllColumnsFromFunctionReturn() throws JSQLParserException
6192
6193
}
6193
6194
6194
6195
@ Test
6196
+ @ Disabled
6195
6197
public void testSelectAllColumnsFromFunctionReturnWithMultipleParentheses ()
6196
6198
throws JSQLParserException {
6197
6199
String sql = "SELECT ( ( ( pg_stat_file('postgresql.conf') ) )) . *" ;
You can’t perform that action at this time.
0 commit comments