HHH-13107 - JtaWithStatementsBatchTest fails on Oracle

This commit is contained in:
Andrea Boriero 2018-11-15 20:35:44 +00:00
parent a95a48b0f1
commit 5515347ec3
1 changed files with 2 additions and 0 deletions

View File

@ -14,6 +14,7 @@ import javax.persistence.Entity;
import javax.persistence.GeneratedValue;
import javax.persistence.GenerationType;
import javax.persistence.Id;
import javax.persistence.Table;
import org.hibernate.annotations.GenericGenerator;
import org.hibernate.annotations.Parameter;
@ -83,6 +84,7 @@ public abstract class AbstractJtaBatchTest extends BaseEntityManagerFunctionalTe
protected abstract String getBatchBuilderClassName();
@Entity(name = "Comment")
@Table(name = "COMMENTS")
public static class Comment {
private Long id;
private String message;