HHH-10953 - Fix tests failing on PostgreSQL
This commit is contained in:
parent
f7cc256a1c
commit
468307f394
|
@ -9,11 +9,13 @@ package from;
|
|||
import javax.persistence.Entity;
|
||||
import javax.persistence.GeneratedValue;
|
||||
import javax.persistence.Id;
|
||||
import javax.persistence.Table;
|
||||
|
||||
/**
|
||||
* @author Andrea Boriero
|
||||
*/
|
||||
@Entity
|
||||
@Table(name = "`IN`")
|
||||
public class In {
|
||||
@Id
|
||||
@GeneratedValue
|
||||
|
|
|
@ -9,11 +9,13 @@ package in.from;
|
|||
import javax.persistence.Entity;
|
||||
import javax.persistence.GeneratedValue;
|
||||
import javax.persistence.Id;
|
||||
import javax.persistence.Table;
|
||||
|
||||
/**
|
||||
* @author Andrea Boriero
|
||||
*/
|
||||
@Entity
|
||||
@Table(name = "`ANY`")
|
||||
public class Any {
|
||||
@Id
|
||||
@GeneratedValue
|
||||
|
|
Loading…
Reference in New Issue