We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I see, there is support for (+) syntax, but if in the statement "( + )" is instead of "(+)" then the parser throws ParseException. In other words:
The parser is good for this query:
Select * From dual d1, dual d2 where d1.dummy = d2.dummy(+);
But the parser throws ParseException for this query:
Select * From dual d1, dual d2 where d1.dummy = d2.dummy( + );
The text was updated successfully, but these errors were encountered:
oracle join (+) vs. ( + ) fix JSQLParser#117
8438bdf
b3d91de
fixes #117
a3fc1f2
No branches or pull requests
I see, there is support for (+) syntax, but if in the statement "( + )" is instead of "(+)" then the parser throws ParseException. In other words:
The parser is good for this query:
But the parser throws ParseException for this query:
The text was updated successfully, but these errors were encountered: