Author: kahatlen
Date: Tue Mar 8 16:02:17 2011
New Revision: 1079406
URL: http://svn.apache.org/viewvc?rev=1079406&view=rev
Log:
DERBY-5106: Lacking cleanup in CheckConstraintTest.testJira4282()
Modified:
db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/CheckConstraintTest.java
Modified: db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/CheckConstraintTest.java
URL: http://svn.apache.org/viewvc/db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/CheckConstraintTest.java?rev=1079406&r1=1079405&r2=1079406&view=diff
==============================================================================
--- db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/CheckConstraintTest.java
(original)
+++ db/derby/code/trunk/java/testing/org/apache/derbyTesting/functionTests/tests/lang/CheckConstraintTest.java
Tue Mar 8 16:02:17 2011
@@ -903,6 +903,8 @@ public final class CheckConstraintTest e
// If we get here, all is well, and DERBY-4282 did not occur.
st1.close();
st.close();
+
+ dropTable("t4282");
}
// This test verifies that if the PRIMARY KEY constraint mentions a
// column which is potentially large, then Derby will automatically
|