Skip a test in Derby, which fails because of

https://issues.apache.org/jira/browse/DERBY-6228
This commit is contained in:
Lukas Eder 2013-05-24 18:42:13 +02:00
parent 42cb667054
commit 2000045f81

View File

@ -265,6 +265,10 @@ extends BaseTest<A, AP, B, S, B2S, BS, L, X, DATE, BOOL, D, T, U, UU, I, IPK, T7
@Test
public void testKeepRSWithUpdateOnChange() throws Exception {
switch (dialect()) {
// There's a critical bug in Derby. When this test is executed, the
// connection is killed
// https://issues.apache.org/jira/browse/DERBY-6228
case DERBY:
case SQLITE:
log.info("SKIPPING", "KeepResultSet tests");
return;
@ -392,6 +396,10 @@ extends BaseTest<A, AP, B, S, B2S, BS, L, X, DATE, BOOL, D, T, U, UU, I, IPK, T7
@Test
public void testKeepRSWithUpdateOnChangeDelete() throws Exception {
switch (dialect()) {
// There's a critical bug in Derby. When this test is executed, the
// connection is killed
// https://issues.apache.org/jira/browse/DERBY-6228
case DERBY:
case SQLITE:
log.info("SKIPPING", "KeepResultSet tests");
return;