File tree Expand file tree Collapse file tree 1 file changed +2
-1
lines changed
hibernate-core/src/test/java/org/hibernate/test/quote Expand file tree Collapse file tree 1 file changed +2
-1
lines changed Original file line number Diff line number Diff line change 10
10
import javax .persistence .GeneratedValue ;
11
11
import javax .persistence .GenerationType ;
12
12
import javax .persistence .Id ;
13
+ import javax .persistence .Table ;
13
14
14
15
import org .hibernate .HibernateException ;
15
16
import org .hibernate .boot .Metadata ;
@@ -62,7 +63,6 @@ public void testTableGeneratorQuoting() {
62
63
final Target target = new TargetDatabaseImpl ( new JdbcConnectionAccessImpl ( connectionProvider ) );
63
64
final SchemaManagementTool tool = serviceRegistry .getService ( SchemaManagementTool .class );
64
65
65
- tool .getSchemaDropper ( null ).doDrop ( metadata , false , target );
66
66
tool .getSchemaCreator ( null ).doCreation ( metadata , false , target );
67
67
68
68
try {
@@ -77,6 +77,7 @@ public void testTableGeneratorQuoting() {
77
77
}
78
78
79
79
@ Entity
80
+ @ Table (name = "test_entity" )
80
81
private static class TestEntity {
81
82
@ Id
82
83
@ GeneratedValue (strategy = GenerationType .TABLE )
You can’t perform that action at this time.
0 commit comments