In IntelliJ (and, I presume, DataGrip), up until a few weeks ago I was able to have blank lines in my SQL queries if I changed the dialect from "Oracle" to "Oracle SQL*Plus".
For example, these queries would be valid and would be executable so long as they were separated with a semicolon:
select *
from some.table;
select
foo.a,
foo.b,
foo.c,
bar.d,
bar.e,
bar.f
from foo
join bar on foo.id = bar.id;
... Now though, it thinks a blank line is the query separator, not a semicolon.
Any idea how I can get this functionality back?