I encounter a JPA/Hibernate mapping problem on a column \"language\" in a MySQL table whose type is char(7). In my entity, the code generated for the field is:
Try this:
@Column(name="language",columnDefinition="char(7)")
see if that works.
For me*Grails it's works: sqlType: "char" on mapping