Skip to content

Commit

Permalink
fix: 修复mysql text类型解析错误
Browse files Browse the repository at this point in the history
  • Loading branch information
zhou-hao committed Sep 25, 2024
1 parent 3cb38e5 commit f951154
Showing 1 changed file with 0 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,6 @@ public MysqlDialect() {
registerDataType("text", JdbcDataType.of(JDBCType.CLOB, String.class));
registerDataType("longtext", JdbcDataType.of(JDBCType.LONGVARCHAR, String.class));
registerDataType("year", JdbcDataType.of(JDBCType.DATE, Date.class));
registerDataType("text", JdbcDataType.of(JDBCType.CLOB, Date.class));
registerDataType("datetime", JdbcDataType.of(JDBCType.TIMESTAMP, Date.class));

}
Expand Down

0 comments on commit f951154

Please sign in to comment.