From 43e4175b22f76bf44dd847638857f6e782e4e580 Mon Sep 17 00:00:00 2001 From: Gail Badner Date: Wed, 5 Sep 2018 12:56:05 -0700 Subject: [PATCH] HHH-12958 : NotFoundLogicalOneToOneTest fails on Oracle due to identifiers that are too long (5.1) --- .../annotations/notfound/NotFoundLogicalOneToOneTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/hibernate-core/src/test/java/org/hibernate/test/annotations/notfound/NotFoundLogicalOneToOneTest.java b/hibernate-core/src/test/java/org/hibernate/test/annotations/notfound/NotFoundLogicalOneToOneTest.java index bbd683dc81..b3712cb225 100644 --- a/hibernate-core/src/test/java/org/hibernate/test/annotations/notfound/NotFoundLogicalOneToOneTest.java +++ b/hibernate-core/src/test/java/org/hibernate/test/annotations/notfound/NotFoundLogicalOneToOneTest.java @@ -72,7 +72,7 @@ public class NotFoundLogicalOneToOneTest extends BaseCoreFunctionalTestCase { return new Class[] { Coin.class, Currency.class }; } - @Entity + @Entity(name = "Coin") public static class Coin { private Integer id; private String name; @@ -108,7 +108,7 @@ public class NotFoundLogicalOneToOneTest extends BaseCoreFunctionalTestCase { } } - @Entity + @Entity(name = "Currency") public static class Currency implements Serializable { private Integer id; private String name;