Skip to content

Commit

Permalink
0002076: Synchronization is not performed if datetime column has chan…
Browse files Browse the repository at this point in the history
…ges in fractional seconds part
  • Loading branch information
chenson42 committed Nov 20, 2014
1 parent 07ea510 commit c02170a
Showing 1 changed file with 1 addition and 1 deletion.
Expand Up @@ -98,7 +98,7 @@ protected boolean isTimestampNewer(Conflict conflict, AbstractDatabaseWriter wri
}
}

return existingTs == null || loadingTs.after(existingTs);
return existingTs == null || loadingTs.compareTo(existingTs) > 0;
}

protected boolean isVersionNewer(Conflict conflict, AbstractDatabaseWriter writer, CsvData data) {
Expand Down

0 comments on commit c02170a

Please sign in to comment.