I am deploying tables, views, procedures to Snowflake DB using liquibase in gitlab. I am able to deploy tables, views but procedures are not getting deployed even after everything runs successfully.
My master.xml
looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<databaseChangeLog xmlns="http://www.liquibase.org/xml/ns/dbchangelog" http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd">
<include file="tables/changelog.xml" relativeToChangelogFile="true" />
<include file="views/changelog.xml" relativeToChangelogFile="true" />
<include file="procedures/proclog.xml" relativeToChangelogFile="true" />
</databaseChangeLog>
And my proclog.xml
looks like this:
<?xml version="1.0" encoding="UTF-8"?>
<databaseChangeLog
http://www.liquibase.org/xml/ns/dbchangelog/dbchangelog-ext.xsd">
<include file="F_EXT_00.sql" relativeToChangelogFile="true" />
<include file="DITXXP01_00.sql" relativeToChangelogFile="true" />
</databaseChangeLog>
Is there anything else I need to check? The code is correct