Himavanth Rachamsetty edited a comment on an issue
Hibernate ORM / Bug HHH-6935
HibernateException in mysql Found: bit, expected: boolean
Found the problem i also got org.hibernate.HibernateException: Wrong column type ... Found: bit, expected: boolean

on BooleanType in hibernate 4 they changed the Ctor to

public BooleanType() {
    this( org.hibernate.type.descriptor.sql.BooleanTypeDescriptor.INSTANCE, BooleanTypeDescriptor.INSTANCE );
}
instead of old versions

public BooleanType() {
  ...