Skip to content

Commit

Permalink
Fix failing Oracle test
Browse files Browse the repository at this point in the history
  • Loading branch information
jbarrez committed Jul 16, 2024
1 parent a418549 commit f69dc84
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ public void testRollbackTransactionOnFlowableException() {
// Create a table that the userBean is supposed to fill with some data
JdbcTemplate jdbcTemplate = new JdbcTemplate(dataSource);
if (processEngineConfiguration.getDatabaseType().equals(AbstractEngineConfiguration.DATABASE_TYPE_ORACLE)) {
jdbcTemplate.execute("create table MY_TABLE (MY_TEXT INTEGER, primary key (MY_COLUMN));");
jdbcTemplate.execute("create table MY_TABLE (MY_TEXT INTEGER);");
} else {
jdbcTemplate.execute("create table MY_TABLE (MY_COLUMN int);");
}
Expand Down

0 comments on commit f69dc84

Please sign in to comment.