-
Notifications
You must be signed in to change notification settings - Fork 146
New issue
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
Wrong multiline query parsing #129
Comments
Currently done for shell mode and all mentioned queries work there (done based on #115 at
for example
|
3774b1e added support for files (branch https://github.com/snuyanzin/sqlline/tree/SQLLINE_129) |
Fixed in 77cd467, PR #159. Thanks @snuyanzin! |
The problem appears for queries if any non-last their line ends with
;
as sqlline does not care if this;
is a part of constant or comment. Also sqlline does not care of multiline comments at all. For instanceIt makes sense to resolve this issue after migration to Jline3 #115 is done as jline3 provides possibility to extend
org.jline.reader.impl.DefaultParser
in such a wayThe text was updated successfully, but these errors were encountered: