Hello, this issue seems to be caused by the MySQL driver reporting LONGTEXT columns with type code Types.LONGVARCHAR (-1), whereas Hibernate is expecting a Types.CLOB (2005). A possible workaround is forcing Hibernate to consider the name property of type LONGTEXT by e.g. setting the column length to a value that would require that type (> 16,777,215). |