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
{{ message }}
This repository was archived by the owner on Jul 7, 2025. It is now read-only.
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.