Fix test on CockroachDB by not using identity generator

This commit is contained in:
Christian Beikov 2023-12-22 10:23:25 +01:00
parent 0307ee7c7a
commit 168a5dc469
1 changed files with 1 additions and 1 deletions

View File

@ -114,7 +114,7 @@ public class ProxyWithGenericsTest {
@Access(AccessType.FIELD)
public static abstract class AbstractEntityImpl {
@Id
@GeneratedValue(strategy = GenerationType.IDENTITY)
@GeneratedValue
@Column(name = "ID")
Long id;
}