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

View File

@ -37,6 +37,13 @@ public void testStartOfSequence() throws Exception {
s.close(); s.close();
assertTrue(person.getId() == 10); assertTrue(person.getId() == 10);
s = openSession();
tx = s.beginTransaction();
s.createQuery( "delete from Person" ).executeUpdate();
tx.commit();
s.close();
} }
} }