Skip to content

Commit bd91b1d

Browse files
committed
Fixed Typo in Validator Data Model
1 parent f9ac94e commit bd91b1d

1 file changed

Lines changed: 2 additions & 3 deletions

File tree

mysql-replicator-applier/src/main/java/com/booking/replication/applier/hbase/mutation/HBaseApplierMutationGenerator.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,8 +22,7 @@
2222
import java.io.UnsupportedEncodingException;
2323
import java.net.URLEncoder;
2424
import java.util.*;
25-
import com.booking.validator.data.source.mysql.MysqQuerylOptions;
26-
25+
import com.booking.validator.data.source.mysql.MysqlQueryOptions;
2726
/**
2827
* This class generates HBase mutations and keys
2928
*/
@@ -364,7 +363,7 @@ private DataSource getSourceDataSource(AugmentedRow row) {
364363
return dataSourceName == null ?
365364
null :
366365
new DataSource(dataSourceName,
367-
new MysqQuerylOptions(Types.MYSQL.getValue(),
366+
new MysqlQueryOptions(Types.MYSQL.getValue(),
368367
table,
369368
primaryKeys,
370369
getSourceTransformation(row)));

0 commit comments

Comments
 (0)