[hibernate-commits] Hibernate SVN: r17792 - annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/annotations/entity.
hibernate-commits at lists.jboss.org
hibernate-commits at lists.jboss.org
Mon Oct 19 09:18:26 EDT 2009
Author: stliu
Date: 2009-10-19 09:18:25 -0400 (Mon, 19 Oct 2009)
New Revision: 17792
Modified:
annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/annotations/entity/Forest.java
Log:
JBPAPP-1068 HHH-4500 Annotations - MSSQL, Oracle - Mapping inconsistency
Modified: annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/annotations/entity/Forest.java
===================================================================
--- annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/annotations/entity/Forest.java 2009-10-19 13:16:08 UTC (rev 17791)
+++ annotations/branches/v3_3_1_GA_CP/src/test/org/hibernate/test/annotations/entity/Forest.java 2009-10-19 13:18:25 UTC (rev 17792)
@@ -11,6 +11,7 @@
import org.hibernate.annotations.FilterDef;
import org.hibernate.annotations.Filters;
import org.hibernate.annotations.Index;
+import org.hibernate.annotations.OptimisticLock;
import org.hibernate.annotations.OptimisticLockType;
import org.hibernate.annotations.ParamDef;
import org.hibernate.annotations.Parameter;
@@ -47,6 +48,7 @@
private String bigText;
private Country country;
+ @OptimisticLock(excluded=true)
@Type(type = "text")
public String getLongDescription() {
return longDescription;
More information about the hibernate-commits
mailing list