Hi Team,
While trying to execute below changeset connecting to oracle DB, we are getting an exception
<changeSet author="eIUM" id="syzygy-timers-1" dbms="!timesten">
<preConditions onFail="MARK_RAN">
<not>
<tableExists tableName="FSM"/>
</not>
</preConditions>
<createTable tableName="FSM">
<column autoIncrement="true" name="ID" type="BIGINT">
<constraints primaryKey="true"/>
</column>
<column name="FT_EXP" type="VARCHAR(100)"/>
<column name="ENTITY_ID" type="VARCHAR(100)"/>
<column name="ENTITY_TYPE" type="VARCHAR(100)"/>
</createTable>
</changeSet>
**<changeSet author="eIUM" id="syzygy-timers-1-tt" dbms="timesten">**
** <preConditions onFail="MARK_RAN">**
** <not>**
** <tableExists tableName="FSM"/>**
** </not>**
** </preConditions>**
** <createTable tableName="FSM">**
** <column name="ID" type="BIGINT">**
** <constraints primaryKey="true"/>**
** </column>**
** <column name="FT_EXP" type="VARCHAR(100)"/>**
** <column name="ENTITY_ID" type="VARCHAR(100)"/>**
** <column name="ENTITY_TYPE" type="VARCHAR(100)"/>**
** </createTable>**
** </changeSet>**
<changeSet author="eIUM" id="syzygy" dbms="oracle,timesten">
<preConditions onFail="MARK_RAN">
<not>
<sequenceExists sequenceName="FSM_SEQ"/>
</not>
</preConditions>
<createSequence
incrementBy="1"
sequenceName="FSM_TIMER_SEQ"
startValue="1"/>
</changeSet>
however facing below issue during execution
Caused by: liquibase.exception.CommandExecutionException: liquibase.exception.ValidationFailedException: Validation Failed:
1 changes have validation failures
timesten is not a supported DB
at liquibase.command.CommandScope.execute(CommandScope.java:237)
at liquibase.Liquibase.lambda$update$0(Liquibase.java:222)
at liquibase.Scope.lambda$child$0(Scope.java:184)
at liquibase.Scope.child(Scope.java:193)
at liquibase.Scope.child(Scope.java:183)
at liquibase.Scope.child(Scope.java:162)
at liquibase.Liquibase.runInScope(Liquibase.java:1371)
this changeset was working on earlier version of liquibase : 4.8.0.
Could you help me with resolution