HHH-16768 - Switch JoinResultTests from random to fixed UUID to avoid problems with Sybase

Signed-off-by: Jan Schatteman <jschatte@redhat.com>
This commit is contained in:
Jan Schatteman 2023-09-05 22:25:10 +02:00 committed by Jan Schatteman
parent 935ac494dd
commit 9e4a56c651
1 changed files with 1 additions and 1 deletions

View File

@ -121,7 +121,7 @@ public class JoinResultTests {
void createTestData(SessionFactoryScope scope) {
scope.inTransaction( (session) -> {
final Vendor vendor = new Vendor( 1, "ACME", "acme", "Some notes" );
final Product product = new Product( 1, UUID.randomUUID(), vendor );
final Product product = new Product( 1, UUID.fromString( "53886a8a-7082-4879-b430-25cb94415be8" ), vendor );
session.persist( vendor );
session.persist( product );
} );