sql and sqlFile not executing sql statements

Description

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>

Environment

Vagrant box "ubuntu/bionic64"
using mysql-connector-java-5.1.46.jar
Mariadb 10.3

Activity

Show:

Details

Reporter

Components

Affects versions

Priority

Created January 5, 2019 at 11:49 PM
Updated January 5, 2019 at 11:49 PM