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 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174
|
/*
Derby - Class org.apache.derbyTesting.functionTests.tests.store.KeepDisposableStatsPropertyTest
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.store;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.sql.Statement;
import java.sql.Types;
import java.util.Properties;
import junit.framework.Test;
import org.apache.derbyTesting.junit.BaseJDBCTestCase;
import org.apache.derbyTesting.junit.BaseTestSuite;
import org.apache.derbyTesting.junit.IndexStatsUtil;
import org.apache.derbyTesting.junit.SystemPropertyTestSetup;
/**
* Tests that the debug property used to revert to the previous behavior for
* dealing with disposable index cardinality statistics works.
*/
public class KeepDisposableStatsPropertyTest
extends BaseJDBCTestCase {
public KeepDisposableStatsPropertyTest(String name) {
super(name);
}
/** Verifies the behavior when the property is set to {@code true}. */
public void testPropertyFalse()
throws SQLException {
assertOnSCUI(false);
}
/** Verifies the behavior when the property is set to {@code true}. */
public void testPropertyTrue()
throws SQLException {
assertOnSCUI(true);
}
/** Verifies that the default for the property is {@code false}. */
public void testPropertyDefault()
throws SQLException {
assertOnSCUI(false);
}
/** Runs the real test case. */
private void assertOnSCUI(boolean keepDisposable)
throws SQLException {
IndexStatsUtil stats = new IndexStatsUtil(
openDefaultConnection(), 20*1000); // 20 seconds timeout
// Create table.
String TAB = "STAT_SCUI";
dropTable(TAB);
Statement stmt = createStatement();
stmt.executeUpdate("create table " + TAB +
" (id int not null, val int)");
stats.assertNoStatsTable(TAB);
PreparedStatement psIns = prepareStatement(
"insert into " + TAB + " values (?,?)");
setAutoCommit(false);
for (int i=0; i < 20; i++) {
psIns.setInt(1, i);
psIns.setInt(2, i);
psIns.executeUpdate();
}
commit();
setAutoCommit(true);
stmt.executeUpdate("alter table " + TAB + " add constraint PK_" + TAB +
" primary key(id)");
stats.assertTableStats(TAB, keepDisposable ? 1 : 0);
stmt.executeUpdate(
"create unique index UNIQ_IDX_" + TAB + " ON " + TAB + "(val)");
stats.assertTableStats(TAB, keepDisposable ? 2 : 0);
PreparedStatement ps = prepareStatement(
"call SYSCS_UTIL.SYSCS_UPDATE_STATISTICS('APP', ?, ?)");
// Update stats for all indexes.
ps.setString(1, TAB);
ps.setNull(2, Types.VARCHAR);
ps.execute();
stats.assertTableStats(TAB, keepDisposable ? 2 : 0);
// Update stats for one specific index.
ps.setString(2, "UNIQ_IDX_" + TAB);
ps.execute();
stats.assertTableStats(TAB, keepDisposable ? 2 : 0);
// Drop statistics.
stmt.execute("call SYSCS_UTIL.SYSCS_DROP_STATISTICS(" +
"'APP', '" + TAB + "', null)");
stats.assertNoStatsTable(TAB);
// Update and assert again, this time in the reverse order.
ps.execute();
stats.assertTableStats(TAB, keepDisposable ? 1 : 0);
ps.setNull(2, Types.VARCHAR);
ps.execute();
stats.assertTableStats(TAB, keepDisposable ? 2 : 0);
IndexStatsUtil.IdxStats[] oldStats = stats.getStatsTable(TAB);
// Insert more data to trigger an automatic update
setAutoCommit(false);
for (int i=20; i < 2000; i++) {
psIns.setInt(1, i);
psIns.setInt(2, i);
psIns.executeUpdate();
}
commit();
setAutoCommit(true);
// Trigger the scheduling logic to get the istat daemon going
prepareStatement("select * from " + TAB + " where id = ?");
IndexStatsUtil.IdxStats[] newStats =
stats.getNewStatsTable(TAB, oldStats);
assertEquals(oldStats.length, newStats.length);
for (int i=0; i < oldStats.length; i++) {
assertEquals(keepDisposable, newStats[i].after(oldStats[i]));
}
// Cleanup
dropTable(TAB);
stats.release();
}
/**
* Returns a suite where the test is run without specifying the property
* (use the default value), explicitly setting it to {@code true}, and
* explicitly setting it to {@code false}.
*/
public static Test suite() {
String property = "derby.storage.indexStats.debug.keepDisposableStats";
BaseTestSuite suite =
new BaseTestSuite("KeepDisposableStatsPropertyTestSuite");
// Test the default (expected to be false).
suite.addTest(
new KeepDisposableStatsPropertyTest("testPropertyDefault"));
// Test setting the property explicitly to true.
Properties propsOn = new Properties();
propsOn.setProperty(property, "true");
BaseTestSuite suiteOn = new BaseTestSuite("Do KeepDisposableStats");
suiteOn.addTest(
new KeepDisposableStatsPropertyTest("testPropertyTrue"));
suite.addTest(new SystemPropertyTestSetup(suiteOn, propsOn, true));
// Test setting the property explicitly to false.
Properties propsOff = new Properties();
propsOff.setProperty(property, "false");
BaseTestSuite suiteOff =
new BaseTestSuite("Don't KeepDisposableStats");
suiteOff.addTest(
new KeepDisposableStatsPropertyTest("testPropertyFalse"));
suite.addTest(new SystemPropertyTestSetup(suiteOff, propsOff, true));
return suite;
}
}
|