OPENJPA-2658 also drop trigger T1 which prevents dropping of the function

git-svn-id: https://svn.apache.org/repos/asf/openjpa/trunk@1757057 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Mark Struberg 2016-08-21 13:16:28 +00:00
parent 9d2963fc05
commit 98b7a4f9ea
1 changed files with 1 additions and 2 deletions

View File

@ -905,6 +905,7 @@ public class TestQueryTimeout extends SQLListenerTestCase {
getLog().trace("setupCreateDBFunction()");
// remove existing function if it exists and recreate
try {
exec(true, 0, "DROP TRIGGER t1");
exec(true, 0, "DROP FUNCTION DELAY");
exec(false, 0, "CREATE FUNCTION DELAY(SECONDS INTEGER, " +
"VALUE INTEGER) RETURNS INTEGER PARAMETER STYLE JAVA " +
@ -1134,6 +1135,4 @@ public class TestQueryTimeout extends SQLListenerTestCase {
return value;
}
public static void main(String[] args) {
}
}