You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Batoo took 50 numbers from sequence and had problem when used all of them? It works fine with allocationSize set to 1. BatooJPA 2.0.1.0-RTM, PopstgreSQL 9.2.
Sample test code snippet (in Spock with SpringData):
(...)
@Transactional
def "should allow to insert over 50 images in one transaction"() {
setup:
for (i in 0..50) {
imageRepository.save(new Image("foo"));
}
expect:
imageRepository.count() == 51
}
The text was updated successfully, but these errors were encountered:
Creating more than 50 images in one transaction (on freshly initialized database) results in:
Batoo took 50 numbers from sequence and had problem when used all of them? It works fine with allocationSize set to 1. BatooJPA 2.0.1.0-RTM, PopstgreSQL 9.2.
Sample test code snippet (in Spock with SpringData):
The text was updated successfully, but these errors were encountered: