Skip to content

Commit

Permalink
SYMMETRICDS-421
Browse files Browse the repository at this point in the history
  • Loading branch information
chenson42 committed Apr 30, 2011
1 parent 5259a0f commit b876344
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -63,7 +63,7 @@ public void init(Platform pf, int queryTimeout, JdbcTemplate jdbcTemplate) {

@Override
protected void initTablesAndFunctionsForSpecificDialect() {
if (getMajorVersion() > 8 || (getMajorVersion() >= 8 && getMinorVersion() >= 3)) {
if (getMajorVersion() > 8 || (getMajorVersion() == 8 && getMinorVersion() >= 3)) {
log.info("TransactionIDSupportEnabling");
supportsTransactionId = true;
transactionIdExpression = TRANSACTION_ID_EXPRESSION;
Expand Down

0 comments on commit b876344

Please sign in to comment.