You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
select ...
from ((select ...) join (select ...) join (select...))
is not possible in the current grammar because subjoin is defined to have only one join item. This is wrong and causes more complex SQL (like mine, sadly enough) to fail ;)
The solution is to make SubJoin have a List and to have the grammar parse that using JoinsList(). I will submit a pull request to fix this issue.
The text was updated successfully, but these errors were encountered:
fjalvingh
added a commit
to fjalvingh/JSqlParser
that referenced
this issue
Jan 4, 2018
#564)
* Fix issue #563: subjoin allows only one inner join, this should be a list
* Fix failing Oracle tests because of confusion between subjoin and subselect.
A join like
is not possible in the current grammar because subjoin is defined to have only one join item. This is wrong and causes more complex SQL (like mine, sadly enough) to fail ;)
The solution is to make SubJoin have a List and to have the grammar parse that using JoinsList(). I will submit a pull request to fix this issue.
The text was updated successfully, but these errors were encountered: