Skip to content

Commit

Permalink
Override getErrorDetailsProviderClassName
Browse files Browse the repository at this point in the history
  • Loading branch information
psainics committed Nov 21, 2024
1 parent cbd3417 commit b755515
Show file tree
Hide file tree
Showing 2 changed files with 10 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -109,6 +109,11 @@ String getDbColumns() {
return dbColumns;
}

@Override
protected String getErrorDetailsProviderClassName() {
return MysqlErrorDetailsProvider.class.getName();
}

/**
* MySQL action configuration.
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,11 @@ protected SchemaReader getSchemaReader() {
return new MysqlSchemaReader(null, mysqlSourceConfig.getConnectionArguments());
}

@Override
protected String getErrorDetailsProviderClassName() {
return MysqlErrorDetailsProvider.class.getName();
}

/**
* MySQL source config.
*/
Expand Down

0 comments on commit b755515

Please sign in to comment.