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:
53885388
53895389 | LOOKAHEAD(16) retval=AllTableColumns()
53905390
5391- | LOOKAHEAD(250) retval=FunctionAllColumns()
5391+ // | LOOKAHEAD(250) retval=FunctionAllColumns()
53925392
53935393 // support timestamp expressions
53945394 | 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 {
61746174 }
61756175
61766176 @ Test
6177+ @ Disabled
61776178 public void testSelectAllColumnsFromFunctionReturn () throws JSQLParserException {
61786179 String sql = "SELECT (pg_stat_file('postgresql.conf')).*" ;
61796180 Statement statement = CCJSqlParserUtil .parse (sql );
@@ -6192,6 +6193,7 @@ public void testSelectAllColumnsFromFunctionReturn() throws JSQLParserException
61926193 }
61936194
61946195 @ Test
6196+ @ Disabled
61956197 public void testSelectAllColumnsFromFunctionReturnWithMultipleParentheses ()
61966198 throws JSQLParserException {
61976199 String sql = "SELECT ( ( ( pg_stat_file('postgresql.conf') ) )) . *" ;
You can’t perform that action at this time.
0 commit comments