| For me, this doesn't seem to be an issue with Hibernate. The doc clearly states that the "create" mode will try to drop the tables and then recreate them. If you need to clean up the DB for tests, use a tool for that e.g. DBUnit This could even boost up the performance of your tests as it is not required to drop/create the database objects for each test run. What do you think Vlad? |