mirror of
https://github.com/ebean-orm/ebean.git
synced 2024-04-21 10:51:47 +00:00
#218 - Internal change - modify SequenceIdGenerator to use Long instead of Integer
This commit is contained in:
@@ -26,10 +26,12 @@ public class TestSeqBatch extends BaseTestCase {
|
||||
|
||||
Object id = d.nextId(null);
|
||||
Assert.assertNotNull(id);
|
||||
|
||||
//System.out.println(id);
|
||||
|
||||
for (int i = 0; i < 16; i++) {
|
||||
Object id2 = d.nextId(null);
|
||||
Assert.assertNotNull(id2);
|
||||
Assert.assertNotNull(id2);
|
||||
//System.out.println(id2);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user