I am wrong a Long liquibase script. when it runs the changeSet to create an index, it does so, then it complains that the index exists, and fails
The changeset is simple:
<changeSet author="ethomps2 (generated)" id="1481645438287-1049">
<preConditions onFail="MARK_RAN">
<not>
<indexExists schemaName="CARSIS" indexName="FK_ADJITEM_IDX_13" />
</not>
</preConditions>
<createIndex schemaName="CARSIS" tablespace="ADJITEM_IND" indexName="FK_ADJITEM_IDX_13"
tableName="ADJITEM">
<column name="ADJPG_NUM" />
</createIndex>
</changeSet>
Any ideas?