We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 884f9a5 commit c4a77ebCopy full SHA for c4a77eb
hibernate-dialect/src/test/java/tech/ydb/hibernate/types/TypesTest.java
@@ -70,7 +70,12 @@ void integrationTypesTest() {
70
for (var uuid : uuids) {
71
employee.setUuid(UUID.fromString(uuid));
72
inTransaction(session -> session.merge(employee));
73
- inTransaction(session -> assertEquals(employee, session.find(Employee.class, employee.getId())));
+ inTransaction(session -> {
74
+ var actualEmployee = session.find(Employee.class, employee.getId());
75
+
76
+ assertEquals(employee, actualEmployee);
77
+ assertEquals(uuid.toLowerCase(), actualEmployee.getUuid().toString());
78
+ });
79
}
80
81
0 commit comments