I am new to liquibase, I am executing a sql changeset file where the preconditions are
–precondition --onFail:CONTINUE
–precondition-sql-check expectedResult:0 SELECT count(*) FROM weather_data WHERE id=1 ;
There is already id of 1 is present in db, so the expected result is not 1,
Now I am execpecting this precondition has failed, I need to skip this changeset as I mentioned the on fail as continue , but the result is