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
With the latest snapshot (019f4e7e63; it doesn't happen in 1.7.0), I noticed that if I have queries in my import.sql that are split into multiple lines like
insert into Person (gender, name, id)
values ('MALE', 'Jimbo', nextval('hibernate_sequence'));
Then each line is executed as if it were a full query, and the application breaks in this case.
For preserving readability, we should keep allowing splitting queries into multiple lines.
The text was updated successfully, but these errors were encountered:
With the latest snapshot (
019f4e7e63
; it doesn't happen in 1.7.0), I noticed that if I have queries in myimport.sql
that are split into multiple lines likeThen each line is executed as if it were a full query, and the application breaks in this case.
For preserving readability, we should keep allowing splitting queries into multiple lines.
The text was updated successfully, but these errors were encountered: