Skip to content

Commit

Permalink
Merge branch '3.10' of https://github.com/JumpMind/symmetric-ds.git i…
Browse files Browse the repository at this point in the history
…nto 3.10
  • Loading branch information
jumpmind-josh committed Feb 20, 2019
2 parents 3f083c5 + 8effd83 commit 06c7fa7
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Original file line Diff line number Diff line change
Expand Up @@ -715,6 +715,10 @@ private void insertRandomRecord(ISqlTransaction tran, Table table) {
count = tran.prepareAndExecute(insertStatement.getSql(), insertStatement.getValueArray(row.toArray(table.getColumnNames()), count = tran.prepareAndExecute(insertStatement.getSql(), insertStatement.getValueArray(row.toArray(table.getColumnNames()),
row.toArray(table.getPrimaryKeyColumnNames()))); row.toArray(table.getPrimaryKeyColumnNames())));
} catch(SqlException e) { } catch(SqlException e) {
log.warn(e.getMessage());
if(platform.getDatabaseInfo().isRequiresSavePointsInTransaction()) {
tran.rollback();
}
count = 0; count = 0;
} }
} }
Expand Down

0 comments on commit 06c7fa7

Please sign in to comment.