File: Derby4923Test.java

package info (click to toggle)
derby 10.14.2.0-3
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 79,056 kB
  • sloc: java: 691,961; sql: 42,686; xml: 20,512; sh: 3,373; sed: 96; makefile: 60
file content (316 lines) | stat: -rw-r--r-- 10,899 bytes parent folder | download | duplicates (4)
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
package org.apache.derbyTesting.functionTests.tests.store;

import java.sql.CallableStatement;
import java.sql.Connection;
import java.sql.PreparedStatement;
import java.sql.SQLException;
import java.sql.Statement;
import java.util.Arrays;
import junit.framework.Test;
import org.apache.derbyTesting.junit.BaseTestSuite;
import org.apache.derbyTesting.junit.CleanDatabaseTestSetup;
import org.apache.derbyTesting.junit.DatabasePropertyTestSetup;


/*
Class org.apache.derbyTesting.functionTests.tests.store.Derby4923Test

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-4923, An expanding update to the 2nd piece of a long
row which is on a page with 0 bytes free fails with an nospc.U error.  The
code should always reserve enough space in this case to in the worst case
change the row piece to another long pointer to another page.

**/

public class Derby4923Test 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 Derby4923Test(String name) 
    {
        super(name);
    }

    
    /**
     * DERBY-4923 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 4k page
     *   o the long row has 2 pieces, the second is a blob column and is 
     *     located on an overflow page.
     *   o the overflow page has no space on the page.
     *   o the row id's are large enough such that they require 2 bytes to 
     *     store (ie. greater than 64)
     *   o the piece located on the page already takes up the minimum size
     *     allowed for a row piece on an overflow page.
     *
     *
     * 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.  The original user
     * report gave me multiple occurences of the issue.  It always was
     * on a overflow page that was full (sometimes 2 and 3 rows).  The reported
     * case was 4k pages and I was not able to reproduce on 32k.  The updage
     * of the blob column was greater than 4k.
     *
     * The test does the following:
     * o drop/create table
     * o insert 2000 small rows which will fill up a few pages with rows and
     *   make the next record id on those rows bigger than 64.
     * o delete all those rows.
     * o run compress to reclaim the space on all the pages and free up the 
     *   pages so they can be used for overflow pages.
     * o insert 3 short rows that will all end up on same main page.
     * o expand row 1 so that it takes up most of main page.
     * o update row 2 such that it becomes a long row with just the blob column
     *   on an overflow page.  And subsequently shrink the overflow portion
     *   such that it takes the minimum space allowed on an overflow page.
     *   end up on same overflow page.
     * o update row 3 such that it becomes a long row with overflow on same 
     *   page as row 2 with just the blob column
     *   on an overflow page.  Use a length so that it uses all free space on 
     *   the overflow page.
     * o Now update row 2 blob to make it bigger than 4k which causes the
     *   bug.
     **/
    public void testDERBY_4923()
        throws SQLException, java.lang.InterruptedException
    {

        // 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 delete_stmt = 
            prepareStatement("DELETE FROM TESTBADUPDATE");

        PreparedStatement update_stmt = 
            prepareStatement("UPDATE TESTBADUPDATE set value = ? where id = ?");

        // insert a bunch of rows to use up record id's on pages and then delete
        // them all so that free pages have large record ids.
        //

        byte[] pad_blob = new byte[1];
        for (int i = 1000; i < 2000; i++)
        {
            insert_stmt.setInt(     1, i);
            insert_stmt.setBytes(   2, pad_blob);
            insert_stmt.executeUpdate();
        }
        commit();
        delete_stmt.executeUpdate();
        commit();

        // reclaim all the space from the deletes but don't shrink the file
        // as we want pages left with big record id's.
        callCompress(
            stmt.getConnection(),
            "APP",
            "TESTBADUPDATE",
            true,
            true,
            false,
            true);
        commit();

        // insert 3 rows that will fit on same main page.
        pad_blob = new byte[1];

        for (int i = 1; i < 4; i++)
        {
            insert_stmt.setInt(     1, i);
            insert_stmt.setBytes(   2, pad_blob);
            insert_stmt.executeUpdate();
        }

        commit();

        // expand row id 1 such that it fills most of the page

        pad_blob = new byte[3000];
        Arrays.fill(pad_blob, (byte) 0x70);
        update_stmt.setBytes(   1, pad_blob);
        update_stmt.setInt(     2, 1);
        update_stmt.executeUpdate();
        commit();


        // now expand rows 2 and 3 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.  
        //

        // xpand row 2 so it becomes a long row and then shrink the space back
        // on overflow page.
        pad_blob = new byte[1500];
        Arrays.fill(pad_blob, (byte) 0x70);
        update_stmt.setBytes(   1, pad_blob);
        update_stmt.setInt(     2, 2);
        update_stmt.executeUpdate();
        commit();

        pad_blob = new byte[4];
        Arrays.fill(pad_blob, (byte) 0x70);
        update_stmt.setBytes(   1, pad_blob);
        update_stmt.setInt(     2, 2);
        update_stmt.executeUpdate();
        commit();

        /*
        callCompress(
            stmt.getConnection(),
            "APP",
            "TESTBADUPDATE",
            true,
            true,
            false,
            true);
        */

        // xpand row 3 so it becomes a long row and fills the overflow page
        // on overflow page.
        pad_blob = new byte[3988];
        Arrays.fill(pad_blob, (byte) 0x70);
        update_stmt.setBytes(   1, pad_blob);
        update_stmt.setInt(     2, 3);
        update_stmt.executeUpdate();
        commit();

        // see if we can update the column of row 2 to expand it, this causes
        // the bug.
        pad_blob = new byte[19680];
        Arrays.fill(pad_blob, (byte) 0x70);
        update_stmt.setBytes(   1, pad_blob);
        update_stmt.setInt(     2, 2);
        update_stmt.executeUpdate();
        commit();

        stmt.close();
        insert_stmt.close();
        update_stmt.close();
    }


    /**
     * call SYSCS_UTIL.SYSCS_INPLACE_COMPRESS_TABLE() system procedure.
     * <p>
     * Utility test function to call the system procedure.
     *
     **/
    private void callCompress(
    Connection  conn,
    String      schemaName,
    String      tableName,
    boolean     purgeRows,
    boolean     defragmentRows,
    boolean     truncateEnd,
    boolean     commit_operation)
        throws SQLException
    {
        CallableStatement cstmt = 
            conn.prepareCall(
                "call SYSCS_UTIL.SYSCS_INPLACE_COMPRESS_TABLE(?, ?, ?, ?, ?)");
        cstmt.setString(1, schemaName);
        cstmt.setString(2, tableName);
        cstmt.setInt   (3, purgeRows      ? 1 : 0);
        cstmt.setInt   (4, defragmentRows ? 1 : 0);
        cstmt.setInt   (5, truncateEnd    ? 1 : 0);

        cstmt.execute();

        if (commit_operation)
            conn.commit();
    }

    
    protected static Test baseSuite(String name) 
    {
        BaseTestSuite suite = new BaseTestSuite(name);
        suite.addTestSuite(Derby4923Test.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();

                CallableStatement cSt = 
                    conn.prepareCall(
                        "call SYSCS_UTIL.SYSCS_SET_DATABASE_PROPERTY(" +
                        "'derby.storage.pageSize', '4096')");
                cSt.execute();

                // create a table, with pagesize setting it will be 4k page size
                stmt.executeUpdate(
                    "CREATE TABLE TESTBADUPDATE (id int, value blob(1M))");


                conn.setAutoCommit(false);
            }
        };
    }

    public static Test suite() 
    {
        BaseTestSuite suite = new BaseTestSuite("Derby4923Test");
        suite.addTest(baseSuite("Derby4923Test:embedded"));
        return suite;
    }
}