Skip to content

Commit

Permalink
0003085: MySQL JSON columns being converted to hex representation on
Browse files Browse the repository at this point in the history
mysql data on extract at source node
  • Loading branch information
jumpmind-josh committed May 1, 2017
1 parent 2f18be8 commit edd8433
Showing 1 changed file with 2 additions and 0 deletions.
Expand Up @@ -113,6 +113,8 @@ protected Integer mapUnknownJdbcTypeForColumn(Map<String, Object> values) {
return convertTextToLob ? Types.BLOB : Types.LONGVARCHAR;
} else if ("TEXT".equals(typeName)) {
return convertTextToLob ? Types.BLOB : Types.LONGVARCHAR;
} else if ("JSON".equals(typeName)) {
return convertTextToLob ? Types.BLOB : Types.LONGVARCHAR;
} else if ("TINYTEXT".equals(typeName)) {
return convertTextToLob ? Types.BLOB : Types.LONGVARCHAR;
}
Expand Down

0 comments on commit edd8433

Please sign in to comment.