I'm new to liquibase and I am wondering whether it is possible to actually execute a changeset.
update/updateSQL goal seem to simply generate a SQL file with all SQL commands (https://www.liquibase.org/documentation/maven/maven_updatesql.html)
And from other research I've learned that there's no such thing as a dry run (Liquibase - generate script without applying changesets to database / Does Liquibase support dry run?) because as indicated above, update will only create SQL scripts.
So my assumption would be that liquibase never actually executes DDL/Changes.
Please note that we're on MySQL.
Is that correct?