Liquibase sql precondition is not checked
问题 I have multiple changelogs and one of the change log has the precondition on it to check if table exists, if so, skip running the migration. My change log file --liquibase formatted sql --preconditions onFail:MARK_RAN onError:MARK_RAN --precondition-sql-check expectedResult:0 select COUNT(*) C from dba_tables where UPPER(table_name) = 'PERSON' and upper(owner) = 'INT' --changeset nvoxland:3 create table int.person ( id int not null primary key, firstname varchar(80), lastname varchar(80) not