mirror of https://github.com/apache/openjpa.git
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:
parent
833520766f
commit
c000f0bf62
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue