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:
Albert Lee 2012-05-08 14:09:53 +00:00
parent 8c8e250f40
commit 6df8fa909a
1 changed files with 2 additions and 0 deletions

View File

@ -30,6 +30,7 @@ import javax.persistence.Id;
import javax.persistence.Lob;
import javax.persistence.OneToMany;
import javax.persistence.OrderColumn;
import javax.persistence.Table;
import javax.persistence.Version;
import java.io.Serializable;
import java.util.ArrayList;
@ -39,6 +40,7 @@ import java.util.List;
* This is a test entity to demonstrate OPENJPA-2179
*/
@Entity
@Table(name="ORACOURSE")
public class Course implements Serializable
{