Handle failing DROP MATERIALIZED VIEW command when setting up the Oracle
test schema
This commit is contained in:
parent
0077ab9f10
commit
81f4c600bf
@ -281,6 +281,11 @@ public abstract class jOOQAbstractTest<
|
||||
continue;
|
||||
}
|
||||
|
||||
// There is no DROP MATERIALIZED VIEW IF EXISTS statement in Oracle
|
||||
else if (e.getMessage().contains("ORA-12003")) {
|
||||
continue;
|
||||
}
|
||||
|
||||
// There is no DROP SEQUENCE IF EXISTS statement in Oracle
|
||||
else if (e.getMessage().contains("ORA-02289")) {
|
||||
continue;
|
||||
|
||||
Loading…
Reference in New Issue
Block a user