Skip to content

Commit

Permalink
Add priority
Browse files Browse the repository at this point in the history
  • Loading branch information
Barry-RG committed Jun 4, 2024
1 parent c809985 commit fb014a1
Showing 1 changed file with 6 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -91,4 +91,10 @@ public SqlScriptExecutorFactory createSqlScriptExecutorFactory(final JdbcConnect
return (connection, undo, batch, outputQueryResults) -> new DefaultSqlScriptExecutor(new DB2ZJdbcTemplate(connection, thisRef),
callbackExecutor, undo, finalSupportsBatch && batch, outputQueryResults, statementInterceptor);
}

@Override
public int getPriority() {
// DB2/zOS needs to be checked in advance of DB2
return 1;
}
}

0 comments on commit fb014a1

Please sign in to comment.