mirror of https://github.com/apache/openjpa.git
OPENJPA-2179 - Fix table name conflict between org.apache.openjpa.persistence.common.apps.Course and org.apache.openjpa.jdbc.oracle.Course which caused the reported exception.
git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@1335541 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8c8e250f40
commit
6df8fa909a
|
@ -30,6 +30,7 @@ import javax.persistence.Id;
|
||||||
import javax.persistence.Lob;
|
import javax.persistence.Lob;
|
||||||
import javax.persistence.OneToMany;
|
import javax.persistence.OneToMany;
|
||||||
import javax.persistence.OrderColumn;
|
import javax.persistence.OrderColumn;
|
||||||
|
import javax.persistence.Table;
|
||||||
import javax.persistence.Version;
|
import javax.persistence.Version;
|
||||||
import java.io.Serializable;
|
import java.io.Serializable;
|
||||||
import java.util.ArrayList;
|
import java.util.ArrayList;
|
||||||
|
@ -39,6 +40,7 @@ import java.util.List;
|
||||||
* This is a test entity to demonstrate OPENJPA-2179
|
* This is a test entity to demonstrate OPENJPA-2179
|
||||||
*/
|
*/
|
||||||
@Entity
|
@Entity
|
||||||
|
@Table(name="ORACOURSE")
|
||||||
public class Course implements Serializable
|
public class Course implements Serializable
|
||||||
{
|
{
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue