with liquibase 4.21.1 and former i got an unexpected migrate.sql from updateSQL command
my changeset is like this…
--changeset pep:1 dbms:oracle context:"test" runOnChange:true failOnError:false endDelimiter:/
CREATE OR REPLACE PROCEDURE myproc AS
BEGIN
declare
BEGIN
select 'dosomething' from dual;
END;
END;
/
--rollback empty
and I get a invalid END;\ for Oracle SQLDeveloper
-- Changeset db/model/pep.sql::1::pep
CREATE OR REPLACE PROCEDURE myproc AS
BEGIN
declare
BEGIN
select 'dosomething' from dual;
END;
END;/
Some idea about this?
Thanks in advance