在 Liquibase 中, split 语句上可以有空行吗?
下面我想执行两条语句:
--changeset me:1 runAlways:false runOnChange:false failOnError:true splitStatements:true endDelimiter:;
update my_table
set col = 1
where col is null;
alter table my_table modify col not null;
Run Code Online (Sandbox Code Playgroud)