HHH-7717 Wrapped "SYS_USER" column names into "`SYS_USER`" as they can

be
reserved in some dialects which would cause a test failure.
This commit is contained in:
Esen Sagynov 2012-10-26 11:16:15 -04:00 committed by brmeyer
parent eb4b4ba0d2
commit f63352b0f7
1 changed files with 43 additions and 43 deletions

View File

@ -11,7 +11,7 @@ import javax.persistence.ManyToMany;
import javax.persistence.Table;
@Entity( name = "sys_user" )
@Table( name = "SYS_USER" )
@Table( name = "`SYS_USER`" )
public class SysUserOrm {
private long userid;