Skip to:
Running either of these 2 changesets with version 3.6.x causes no change to the database but no errors are generated.
However if I use version 3.5.x then they run correctly.
<changeSet author="me" id="testfile" runOnChange="true"><sqlFile dbms="mysql" encoding="utf8"endDelimiter=";"path="mytestfile.sql"relativeToChangelogFile="true"splitStatements="true"stripComments="true"/></changeSet>
<changeSet author="me" id="test" runOnChange="true"><sql dbms="mysql" stripComments="true">INSERT INTO testtable ( name, displayOrder, deleted) VALUES ( 'Planned', 1, 0)<comment>test</comment></sql></changeSet>
Vagrant box "ubuntu/bionic64"using mysql-connector-java-5.1.46.jarMariadb 10.3
Running either of these 2 changesets with version 3.6.x causes no change to the database but no errors are generated.
However if I use version 3.5.x then they run correctly.
<changeSet author="me" id="testfile" runOnChange="true">
<sqlFile dbms="mysql"
encoding="utf8"
endDelimiter=";"
path="mytestfile.sql"
relativeToChangelogFile="true"
splitStatements="true"
stripComments="true"/>
</changeSet>
<changeSet author="me" id="test" runOnChange="true">
<sql dbms="mysql"
stripComments="true">INSERT INTO testtable ( name, displayOrder, deleted) VALUES ( 'Planned', 1, 0)
<comment>test</comment>
</sql>
</changeSet>