Handle failing DROP MATERIALIZED VIEW command when setting up the Oracle

test schema
This commit is contained in:
Lukas Eder 2012-12-07 12:25:14 +01:00
parent 0077ab9f10
commit 81f4c600bf

View File

@ -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;