I have two databases that are Identical that I am comparing that the diff-changelog command does not seem to be detecting the changes I have made. I have verified the database connections, verified that there is a difference in the two databases. I have verified that it works for a different schema but not the one I am currently working with.
./liquibase diff-changelog \
--changelog-file="mydiffchangelog_${SCHEMA}.${output_format}" \
--url="${dburl}" \
--username="${ACCOUNT}" \
--password="${PASSWORD}" \
--reference-url="${db_refUrl}" \
--reference-username="${ACCOUNT}" \
--reference-password="${PASSWORD}" \
--schemas="${SCHEMA}" \
--diff-types="catalogs,tables,functions,views,columns,indexes,foreignkeys,primarykeys,uniqueconstraints,storedprocedures,triggers,sequences,databasepackage,databasepackagebody"