We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cc8742b commit 279b05aCopy full SHA for 279b05a
jodd-db/src/test/java/jodd/db/fixtures/DbHsqldbTestCase.java
@@ -44,8 +44,9 @@ protected void setupPool(final CoreConnectionPool cp) {
44
45
@Override
46
protected void initDb(final DbSession session) {
47
-
+ executeUpdate(session, "drop table BOY if exists");
48
executeUpdate(session, "drop table GIRL if exists");
49
+
50
String sql = "create table GIRL (" +
51
"ID integer not null," +
52
"NAME varchar(20) not null," +
@@ -54,7 +55,6 @@ protected void initDb(final DbSession session) {
54
55
')';
56
executeUpdate(session, sql);
57
- executeUpdate(session, "drop table BOY if exists");
58
sql = "create table BOY (" +
59
60
"GIRL_ID integer null," +
0 commit comments