Just like with [PostgreSQL|https://hibernate.atlassian.net/browse/HHH-10693], MySQL [does not support all nationalized types|http://dev.mysql.com/doc/refman/5.7/en/string-types.html] (e.g. NCLOB).
To replicate this issue, you need to run the following tests using MySQL:
# {{org.hibernate.userguide.mapping.basic.NClobCharArrayTest}} # {{org.hibernate.userguide.mapping.basic.NClobStringTest}} # {{org.hibernate.userguide.mapping.basic.NClobTest}}
On the other hand, [{{NVARCHAR}} is supported|http://dev.mysql.com/doc/refman/5.7/en/string-type-overview.html]:
{code:java} create table Product ( id integer not null, name varchar(255), warranty nvarchar(255), primary key (id) ) ENGINE=InnoDB {code} |
|