-
Hi all (especially @yrodiere I guess), while trying to update from 3.7.1 to 3.7.2, I'm getting exceptions like:
import java.sql.Types;
import java.util.UUID;
import jakarta.annotation.Generated;
import jakarta.persistence.Basic;
import jakarta.persistence.Column;
import jakarta.persistence.Embeddable;
import org.hibernate.annotations.JdbcTypeCode;
import de.someproject.model.id.DomainIdentifier;
import lombok.Getter;
import lombok.NonNull;
@Embeddable
public record SentApplicationDocumentId(
@Getter
@NonNull
@Column(name = "id", updatable = false, nullable = false, columnDefinition = "CHAR(36)")
@Basic
@JdbcTypeCode(Types.CHAR)
UUID id
) implements DomainIdentifier {
} I'm inclined to call it a regression, no? Edit: MariaDB 10.6.17, database schema initialized via Liquibase. |
Beta Was this translation helpful? Give feedback.
Replies: 2 comments 15 replies
-
Beta Was this translation helpful? Give feedback.
-
Hello,
Sounds like it :( Could you create a bug report? Ideally directly upstream if this also fails with the Hibernate ORM test case templates, which don't rely on Quarkus. |
Beta Was this translation helpful? Give feedback.
https://hibernate.atlassian.net/browse/HHH-17730
The
UnknownEntityTypeException
issue is fixed, but I wasn't able to reproduce yet. Will give it another hour or so tomorrow, resorting to a Quarkus based reproducer eventually.