HHH-17049 HHH-17131 test fixes

(cherry picked from commit 96da7272fb)
This commit is contained in:
Marco Belladelli 2023-09-06 17:50:15 +02:00 committed by Christian Beikov
parent a019d8b05b
commit 1fef8c3587
1 changed files with 2 additions and 0 deletions

View File

@ -15,6 +15,7 @@ import org.junit.Test;
import org.junit.runner.RunWith;
import jakarta.persistence.CascadeType;
import jakarta.persistence.Column;
import jakarta.persistence.Entity;
import jakarta.persistence.FetchType;
import jakarta.persistence.GeneratedValue;
@ -284,6 +285,7 @@ public class ConstructorInitializationAndDynamicUpdateTest extends BaseCoreFunct
@GeneratedValue
private long id;
@Column(name = "open_col")
private boolean open = false;
}