HHH-7717 Wrapped "date" column names into "`date`" 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:15:57 -04:00 committed by brmeyer
parent d41b800bb0
commit eb4b4ba0d2
1 changed files with 64 additions and 63 deletions

View File

@ -34,6 +34,7 @@ public class Investment {
private DollarValue amount;
private String description;
@Column(name = "`date`")
private MyDate date;
public DollarValue getAmount() {