Liquibase has a tool to create a diff between two databases. But I would like to do a diff between a database and a databaseChangeLog file. The only solution I have is to create an empty database. Then update this temporary database with the change log. And at last do the diff between the temporary database and the target database.
Is there a way to do this directly without need of the temporary DB?