-
Notifications
You must be signed in to change notification settings - Fork 26
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
Preserve MultiLine SQL #1
Comments
I'm sure it is possible. The question is why is it necessary? |
If sql file content is preserved with multi lines, Database developer more easily re-use this files.
this sql is changed to following and gives sql error.
I would like to use my sql scripts with least amount of modification. |
I fixed the trailing comment issue, but this one is surprisingly hard to fix as it has knock on effects all over the place, |
When I use ElSqlBundle to read external sql file. An multiline SQL changed to one line sql. For example:
@name(example)
SELECT
COUNT(*)
FROM
Employee
this is changed to
SELECT COUNT(*) FROM Employee
I would like to preserve multi line structure of SQL if it is possible.
The text was updated successfully, but these errors were encountered: