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 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344
|
package org.apache.derbyTesting.functionTests.tests.store;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.ResultSet;
import java.sql.SQLException;
import java.sql.Statement;
import junit.framework.Test;
import org.apache.derbyTesting.junit.BaseTestSuite;
import org.apache.derbyTesting.junit.CleanDatabaseTestSetup;
import org.apache.derbyTesting.junit.DatabasePropertyTestSetup;
import org.apache.derbyTesting.junit.JDBC;
/*
Class org.apache.derbyTesting.functionTests.tests.store.Derby4577Test
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.
*/
/**
Test to reproduce DERBY-4577, An expanding update fails with an nospc.U error.
**/
public class Derby4577Test extends StoreBaseTest
{
/**************************************************************************
* Fields of the class
**************************************************************************
*/
/**************************************************************************
* Constructors for This class:
**************************************************************************
*/
/**************************************************************************
* Private/Protected methods of This class:
**************************************************************************
*/
/**************************************************************************
* Public Methods of This class:
**************************************************************************
*/
/**************************************************************************
* Public Methods of XXXX class:
**************************************************************************
*/
public Derby4577Test(String name)
{
super(name);
}
/**
* DERBY-4577 test case
* <p>
* The update error occurs with the following:
* o update of a long row which requires an update on it's overflow page
* o The portion of the long row on the overflow page needs to have
* max(row size, reserved space) + free space on page <= 12
* (12 causes the error, other values might also).
*
* In order to get to this one needs multiple rows on the overflow page,
* so that they can eat up the free space on the page. This test
* simulates the overflow page state that I got from running the test case
* associated with DERBY-2286. I could only repro on a fast dual core
* linux machine. I repro'd a few times and it always had 3 rows on
* the page: one that had a long column pointer, one that had a long
* row pointer, and one that had the blob on the page eating up most of
* the space on the overflow page.
*
* The test does the following:
* o drop/create table
* o insert 3 rows of interest that will all fit on 1st page, with 1 byte
* blob columns.
* o insert a dummy row that will fill up the rest of the 1st page.
* o update 1st 3 rows so that they are now all long rows that share the
* same overflow page.
* o update row 1 so that it now has a long column, this actually shrinks
* it on this overflow page.
* o update row 2 so that blob column is bigger, but still less than a page
* this results in row 2 getting another long row pointer to a page that
* holds the new blob value. Again this actually shrinks the row piece
* on the overflow page in question.
* o update row 3 so that it's overflow piece fills up all the remaining
* space on the overflow page.
* o finally update row 1's long column, this update causes the bug. The
* no space error should never be thrown to a user on an update. The only
* time an error of this type is allowed is if the actual disk is full.
*
**/
public void testDERBY_4577()
throws SQLException
{
// page 0 - container info/bit map, does not affect test
// page 1 -
// row on it that can never be deleted so this page never can be
// made free.
Statement stmt = createStatement();
PreparedStatement insert_stmt =
prepareStatement("INSERT INTO testBadUpdate VALUES(?, ?)");
PreparedStatement update_stmt =
prepareStatement("UPDATE testBadUpdate set value = ? where id = ?");
// insert 3 rows that will fit on same main page.
byte[] pad_blob = new byte[1];
for (int i = 0; i < 3; i++)
{
insert_stmt.setInt( 1, i);
insert_stmt.setBytes( 2, pad_blob);
insert_stmt.executeUpdate();
}
commit();
// insert a row that fills rest of main page
pad_blob = new byte[32000];
insert_stmt.setInt( 1, 3);
insert_stmt.setBytes( 2, pad_blob);
insert_stmt.executeUpdate();
// now expand each of the rows so that each becomes a "long row", with
// first column on main page with a pointer to overflow page, and each
// 2nd column exists in full on the overflow page. Want
// each overflow to end up on same page.
pad_blob = new byte[4000];
for (int i = 0; i < 3; i++)
{
update_stmt.setBytes( 1, pad_blob);
update_stmt.setInt( 2, i);
update_stmt.executeUpdate();
}
commit();
// eat up the rest of space on main page, by expanding the 4th row.
pad_blob = new byte[32566];
update_stmt.setBytes( 1, pad_blob);
update_stmt.setInt( 2, 3);
update_stmt.executeUpdate();
commit();
// expand row 1 so that it's blob column becomes a long column
pad_blob = new byte[60000];
update_stmt.setBytes( 1, pad_blob);
update_stmt.setInt( 2, 0);
update_stmt.executeUpdate();
commit();
// expand row 2 so that it's blob column becomes another long row
// pointer.
pad_blob = new byte[32500];
update_stmt.setBytes( 1, pad_blob);
update_stmt.setInt( 2, 1);
update_stmt.executeUpdate();
commit();
// expand row 3 so that it's blob column becomes 32649 long.
// was 32000
pad_blob = new byte[32646];
update_stmt.setBytes( 1, pad_blob);
update_stmt.setInt( 2, 2);
update_stmt.executeUpdate();
commit();
// see if we can update the long column of row 1
pad_blob = new byte[120000];
update_stmt.setBytes( 1, pad_blob);
update_stmt.setInt( 2, 0);
update_stmt.executeUpdate();
commit();
stmt.close();
insert_stmt.close();
update_stmt.close();
}
public void testSmallRow1()
throws SQLException
{
Statement stmt = createStatement();
// setup has created:
// CREATE TABLE testSmallRow1 (id char(1))
// should be a 4k page size.
PreparedStatement insert_stmt =
prepareStatement("INSERT INTO testSmallRow1 VALUES(?)");
// insert more than 3 pages of rows.
insert_stmt.setString(1, "a");
for (int i = 0; i < 4000; i++)
{
insert_stmt.executeUpdate();
}
insert_stmt.close();
commit();
// create an index to test btree handling of short key.
stmt.executeUpdate("CREATE INDEX idx1 on testSmallRow1(id)");
// Check the consistency of the indexes
ResultSet rs = stmt.executeQuery(
"VALUES SYSCS_UTIL.SYSCS_CHECK_TABLE('APP', 'TESTSMALLROW1')");
String [][] expRS = new String [][] {{"1"}};
JDBC.assertFullResultSet(rs, expRS, true);
// now test on new table with an index during the inserts.
// create an index to test btree handling of short key.
stmt.executeUpdate("CREATE INDEX idx2 on testSmallRow2(id)");
insert_stmt =
prepareStatement("INSERT INTO testSmallRow2 VALUES(?)");
// insert more than 3 pages of rows.
insert_stmt.setString(1, "a");
for (int i = 0; i < 4000; i++)
{
insert_stmt.executeUpdate();
}
insert_stmt.close();
commit();
// Check the consistency of the indexes
rs = stmt.executeQuery(
"VALUES SYSCS_UTIL.SYSCS_CHECK_TABLE('APP', 'TESTSMALLROW2')");
expRS = new String [][] {{"1"}};
JDBC.assertFullResultSet(rs, expRS, true);
// DDL that caused a bug while trying to fix derby 4577, data is null
// create an index to test btree handling of short key.
stmt.executeUpdate("CREATE INDEX idx3 on testSmallRow3(id)");
insert_stmt =
prepareStatement("INSERT INTO testSmallRow3 VALUES(?, ?)");
// insert more than 3 pages of rows.
insert_stmt.setString(1, null);
for (int i = 0; i < 100; i++)
{
insert_stmt.setInt(2, i);
insert_stmt.executeUpdate();
}
commit();
stmt.executeUpdate("UPDATE testSmallRow3 set id = null where id2 > 1");
// Deleting rows from root of btree which will then force purges on the
// page before it does a split. The purges force the raw store
// through reclaim space on page code path.
stmt.executeUpdate("DELETE from testSmallRow3 where id2 = 40 or id2 = 41 or id2 = 80 or id2 = 81");
commit();
insert_stmt.setString(1, null);
for (int i = 101; i < 600; i++)
{
insert_stmt.executeUpdate();
insert_stmt.setInt(2, i);
}
insert_stmt.close();
commit();
// Check the consistency of the indexes
rs = stmt.executeQuery(
"VALUES SYSCS_UTIL.SYSCS_CHECK_TABLE('APP', 'TESTSMALLROW3')");
expRS = new String [][] {{"1"}};
JDBC.assertFullResultSet(rs, expRS, true);
stmt.close();
}
protected static Test baseSuite(String name)
{
BaseTestSuite suite = new BaseTestSuite(name);
suite.addTestSuite(Derby4577Test.class);
return new CleanDatabaseTestSetup(
DatabasePropertyTestSetup.setLockTimeouts(suite, 2, 4))
{
/**
* Creates the tables used in the test cases.
* @exception SQLException if a database error occurs
*/
protected void decorateSQL(Statement stmt) throws SQLException
{
Connection conn = stmt.getConnection();
// create a table, with blob it will be 32k page size
stmt.executeUpdate(
"CREATE TABLE testBadUpdate (id int, value blob(1M))");
stmt.executeUpdate(
"CREATE TABLE testSmallRow1 (id char(1))");
stmt.executeUpdate(
"CREATE TABLE testSmallRow2 (id char(1))");
stmt.executeUpdate(
"CREATE TABLE testSmallRow3 (id char(20), id2 int)");
conn.setAutoCommit(false);
}
};
}
public static Test suite()
{
BaseTestSuite suite = new BaseTestSuite("Derby4577Test");
suite.addTest(baseSuite("Derby4577Test:embedded"));
return suite;
}
}
|