mirror of https://github.com/apache/openjpa.git
OPENJPA-1597 Rollback MSSQL reserved word, but update Rider test entity failure on MSSQL
git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@928241 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
a9648ec87e
commit
cb0ca8f009
|
@ -37,7 +37,7 @@ public abstract class AbstractSQLServerDictionary
|
|||
extends DBDictionary {
|
||||
|
||||
public AbstractSQLServerDictionary() {
|
||||
reservedWordSet.addAll(Arrays.asList(new String[]{ "FILE", "INDEX", "RULE" }));
|
||||
reservedWordSet.addAll(Arrays.asList(new String[]{ "FILE", "INDEX" }));
|
||||
systemTableSet.add("DTPROPERTIES");
|
||||
validationSQL = "SELECT GETDATE()";
|
||||
rangePosition = RANGE_POST_DISTINCT;
|
||||
|
|
|
@ -25,8 +25,10 @@ import javax.persistence.Column;
|
|||
import javax.persistence.Entity;
|
||||
import javax.persistence.EnumType;
|
||||
import javax.persistence.Enumerated;
|
||||
import javax.persistence.Table;
|
||||
|
||||
@Entity
|
||||
@Table(name="RIDER_ANNUITY")
|
||||
@AttributeOverride(name="lastUpdateDate", column=@Column(name="LAST_UPDATE_TS"))
|
||||
public class Rider extends AnnuityPersistebleObject implements IRider {
|
||||
private static final long serialVersionUID = 2088116709551706187L;
|
||||
|
@ -42,6 +44,8 @@ public class Rider extends AnnuityPersistebleObject implements IRider {
|
|||
public void setEffectiveDate(Date effectiveDate) {
|
||||
this.effectiveDate = effectiveDate;
|
||||
}
|
||||
|
||||
@Column(name="RIDER_RULE")
|
||||
public String getRule() {
|
||||
return rule;
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue