[HbnContainer] Problème avec MySQL

Bonjour,

J’essaie de tester l’addon HbnContainer.

Lorsque je lance les tests avec la configuration HSQL, les tests passent tous à 100%

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
  <session-factory>
    <!-- Hibernate Configuration -->
    <property name="hibernate.dialect">org.hibernate.dialect.HSQLDialect</property>
    <property name="hibernate.connection.driver_class">org.hsqldb.jdbcDriver</property>
    <property name="hibernate.connection.url">jdbc:hsqldb:mem:HbnContainerTests</property>
    <property name="hibernate.connection.username">sa</property>
    <property name="hibernate.current_session_context_class">thread</property>
    <property name="hibernate.hbm2ddl.auto">create-drop</property>

    <!-- Diagnostic Information -->
    <property name="hibernate.show_sql">true</property>
    <property name="hibernate.format_sql">true</property>
    <property name="hibernate.generate_statistics">true</property>
    <property name="hibernate.use_sql_comments">true</property>

    <!-- Entity Mappings -->
    <mapping class="com.vaadin.data.hbnutil.tests.SampleNode" />
  </session-factory>
</hibernate-configuration>

Lorsque je lance les tests avec une configuration MySQL, les tests ne passent pas tous :

<?xml version="1.0" encoding="UTF-8"?>
<!DOCTYPE hibernate-configuration PUBLIC "-//Hibernate/Hibernate Configuration DTD 3.0//EN" "http://www.hibernate.org/dtd/hibernate-configuration-3.0.dtd">
<hibernate-configuration>
  <session-factory>
    <!-- Hibernate Configuration -->
    <property name="hibernate.dialect">org.hibernate.dialect.MySQLDialect</property>
    <property name="hibernate.connection.driver_class">com.mysql.jdbc.Driver</property>
    <property name="hibernate.connection.url">jdbc:mysql://localhost:3306/HbnContainerTests</property>
    <property name="hibernate.connection.username">root</property>
    <property name="hibernate.connection.password">pass</property>
    <property name="hibernate.current_session_context_class">thread</property>
    <property name="hibernate.hbm2ddl.auto">create-drop</property>
    
    <!-- Diagnostic Information -->
    <property name="hibernate.show_sql">true</property>
    <property name="hibernate.format_sql">true</property>
    <property name="hibernate.generate_statistics">true</property>
    <property name="hibernate.use_sql_comments">true</property>
            
    <!-- Entity Mappings -->
    <mapping class="com.vaadin.data.hbnutil.tests.SampleNode" />
  </session-factory>
</hibernate-configuration>

Est-ce que cela vient de la configuration d’Hibernate ?

Voici une publication que j’ai fais avec MYSQL et ça fonctionne bien , mais j’utilise EclipseLink

<?xml version="1.0" encoding="UTF-8"?> model.Sequence model.Category model.File model.Path
</properties>        
</persistence-unit>