1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118
|
/**
* Derby - Class org.apache.derbyTesting.functionTests.tests.lang.JoinDeadlockTest
*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you under the Apache License, Version 2.0 (the
* "License"); you may not use this file except in compliance
* with the License. You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an
* "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
* KIND, either express or implied. See the License for the
* specific language governing permissions and limitations
* under the License.
*/
package org.apache.derbyTesting.functionTests.tests.lang;
import java.sql.Connection;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Properties;
import junit.framework.Test;
import org.apache.derbyTesting.junit.BaseJDBCTestCase;
import org.apache.derbyTesting.junit.SystemPropertyTestSetup;
import org.apache.derbyTesting.junit.TestConfiguration;
public final class JoinDeadlockTest extends BaseJDBCTestCase {
/**
* Public constructor required for running test as standalone JUnit.
* @param name test name
*/
public JoinDeadlockTest(String name)
{
super(name);
}
public static Test suite()
{
final Properties systemProperties = new Properties();
systemProperties.setProperty("derby.locks.waitTimeout", "7");
systemProperties.setProperty("derby.locks.deadlockTimeout", "5");
return new SystemPropertyTestSetup(
TestConfiguration.defaultSuite(JoinDeadlockTest.class),
systemProperties,
true);
}
public void testJoinDeadlock() throws Exception
{
Statement st = createStatement();
try {
Connection c2 = openDefaultConnection();
setAutoCommit(false);
c2.setAutoCommit(false);
// user 1 for bug 1573
// a deadlock when reopening a join gets an assertion
// violation in close()
st.executeUpdate("create table outer1(c1 int)");
st.executeUpdate("create index o1_i1 on outer1(c1)");
st.executeUpdate("insert into outer1 (c1) values 1, 2");
commit();
st.executeUpdate("create table inner1(c1 int, c2 char(254))");
st.executeUpdate("create index i1_i1 on inner1(c1)");
st.executeUpdate("insert into inner1 (c1) values 1, 2");
commit();
st.executeUpdate("create table inner2(c1 int, c2 char(254))");
st.executeUpdate("create index i2_i1 on inner2(c1)");
st.executeUpdate("insert into inner2 (c1) values 1, 2");
commit();
// this user will get lock timeout in subquery on 2nd next
ResultSet c1_rs = st.executeQuery(
"select * from outer1 where c1 <= (select count(*) " +
"from inner1, inner2 where outer1.c1 = outer1.c1)");
c1_rs.next();
assertEquals(c1_rs.getString(1), "1");
Statement c2_st = c2.createStatement();
c2_st.executeUpdate("update inner1 set c1 = c1 where c1 = 1");
try {
c1_rs.next();
} catch (SQLException e) {
assertSQLState("40XL1", e);
}
c2.rollback();
c2.close();
} finally {
// cleanup
dontThrow(st, "drop table outer1");
dontThrow(st, "drop table inner1");
dontThrow(st, "drop table inner2");
commit();
}
}
private void dontThrow(Statement st, String stm) {
try {
st.executeUpdate(stm);
} catch (SQLException e) {
// ignore, best effort here
println("\"" + stm+ "\" failed");
}
}
}
|