HHH-9169 : SQLServer2012Dialect creates sequences starting from Long.MIN_VALUE

This commit is contained in:
Gail Badner 2014-05-13 23:24:31 -07:00
parent ed7144c025
commit 231fb1b195
1 changed files with 9 additions and 2 deletions

View File

@ -35,8 +35,15 @@ public class SQLServer2012SequenceGeneratorTest extends BaseCoreFunctionalTestCa
s.persist(person);
tx.commit();
s.close();
assertTrue(person.getId() == 10);
}
s = openSession();
tx = s.beginTransaction();
s.createQuery( "delete from Person" ).executeUpdate();
tx.commit();
s.close();
}
}