OPENJPA-526: Insert text more than 4K bytes to Clob column causes SQLException: Exhausted Resultset

fix table name in Lobs entity to avoid conflict with other entities in JUnit regression.

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@987644 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Catalina Wei 2010-08-20 21:47:42 +00:00
parent 833520766f
commit c000f0bf62
1 changed files with 1 additions and 1 deletions

View File

@ -26,7 +26,7 @@ import javax.persistence.Lob;
import javax.persistence.Table;
@Entity
@Table(name = "lobs")
@Table(name = "zlobs")
public class Lobs implements Serializable {
private static final long serialVersionUID = 1L;