Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
0003157: Allow bulk loaders to fall back to default loader when an error
  • Loading branch information
chenson42 committed Jun 19, 2017
1 parent 4bc3774 commit 89e9b83
Showing 1 changed file with 5 additions and 0 deletions.
Expand Up @@ -57,6 +57,11 @@ public void setupTest() {
protected boolean shouldTestRun(IDatabasePlatform platform) {
return platform != null && platform instanceof MySqlDatabasePlatform;
}

@Override
public void testDuplicateRow() {
/* mysql already handles duplidates. no need to test the special functionality we added to handle dupes */
}

protected AbstractDatabaseWriter create(){
return new MySqlBulkDatabaseWriter(platform, stagingManager, new CommonsDbcpNativeJdbcExtractor(), 10, 1000,true, true);
Expand Down

0 comments on commit 89e9b83

Please sign in to comment.