📄 onlinecompresstest.java
字号:
/* Derby - Class org.apache.derbyTesting.functionTests.harness.procedure Copyright 2005 The Apache Software Foundation or its licensors, as applicable. Licensed 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 org.apache.derby.iapi.db.OnlineCompress;import org.apache.derby.iapi.services.sanity.SanityManager;import java.sql.CallableStatement;import java.sql.Connection;import java.sql.PreparedStatement;import java.sql.ResultSet;import java.sql.SQLException;import java.sql.Statement;import org.apache.derby.tools.ij;public class OnlineCompressTest extends BaseTest{ boolean verbose = false; public OnlineCompressTest() { } /** * call SYSCS_UTIL.SYSCS_INPLACE_COMPRESS_TABLE() system procedure. * <p> * Utility test function to call the system procedure. * **/ protected 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(); } /** * Create and load a table. * <p> * If create_table is set creates a test data table with indexes. * Loads num_rows into the table. This table defaults to 32k page size. * This schema fits 25 rows per page * <p> * * * @param conn Connection to use for sql execution. * @param create_table If true, create new table - otherwise load into * existing table. * @param tblname table to use. * @param num_rows number of rows to add to the table. * * @exception StandardException Standard exception policy. **/ protected void createAndLoadTable( Connection conn, boolean create_table, String tblname, int num_rows, int start_value) throws SQLException { if (create_table) { Statement s = conn.createStatement(); s.execute( "create table " + tblname + "(keycol int, indcol1 int, indcol2 int, indcol3 int, data1 varchar(2000), data2 varchar(2000))"); s.close(); } PreparedStatement insert_stmt = conn.prepareStatement( "insert into " + tblname + " values(?, ?, ?, ?, ?, ?)"); char[] data1_data = new char[500]; char[] data2_data = new char[500]; for (int i = 0; i < data1_data.length; i++) { data1_data[i] = 'a'; data2_data[i] = 'b'; } String data1_str = new String(data1_data); String data2_str = new String(data2_data); int row_count = 0; try { for (int i = start_value; row_count < num_rows; row_count++, i++) { insert_stmt.setInt(1, i); // keycol insert_stmt.setInt(2, i * 10); // indcol1 insert_stmt.setInt(3, i * 100); // indcol2 insert_stmt.setInt(4, -i); // indcol3 insert_stmt.setString(5, data1_str); // data1_data insert_stmt.setString(6, data2_str); // data2_data insert_stmt.execute(); } } catch (SQLException sqle) { System.out.println( "Exception while trying to insert row number: " + row_count); throw sqle; } if (create_table) { Statement s = conn.createStatement(); s.execute( "create index " + tblname + "_idx_keycol on " + tblname + "(keycol)"); s.execute( "create index " + tblname + "_idx_indcol1 on " + tblname + "(indcol1)"); s.execute( "create index " + tblname + "_idx_indcol2 on " + tblname + "(indcol2)"); s.execute( "create unique index " + tblname + "_idx_indcol3 on " + tblname + "(indcol3)"); s.close(); } conn.commit(); } /** * Create and load a table with long columns and long rows. * <p> * If create_table is set creates a test data table with indexes. * Loads num_rows into the table. This table defaults to 32k page size. * <p> * schema of table: * keycol int, * longcol1 clob(200k), * longrow1 varchar(10000), * longrow2 varchar(10000), * longrow3 varchar(10000), * longrow4 varchar(10000), * indcol1 int, * indcol2 int, * indcol3 int, * data1 varchar(2000), * data2 varchar(2000) * longrow5 varchar(10000), * longrow6 varchar(10000), * longrow7 varchar(10000), * longrow8 varchar(10000), * longcol2 clob(200k), * * * @param conn Connection to use for sql execution. * @param create_table If true, create new table - otherwise load into * existing table. * @param tblname table to use. * @param num_rows number of rows to add to the table. * * @exception StandardException Standard exception policy. **/ private void createAndLoadLongTable( Connection conn, boolean create_table, String tblname, int num_rows) throws SQLException { if (create_table) { Statement s = conn.createStatement(); s.execute( "create table " + tblname + " (keycol int, longcol1 clob(200k), longrow1 varchar(10000), longrow2 varchar(10000), longrow3 varchar(10000), longrow4 varchar(10000), indcol1 int, indcol2 int, indcol3 int, data1 varchar(2000), data2 varchar(2000), longrow5 varchar(10000), longrow6 varchar(10000), longrow7 varchar(10000), longrow8 varchar(10000), longcol2 clob(200k))"); s.close(); } PreparedStatement insert_stmt = conn.prepareStatement( "insert into " + tblname + " values(?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?, ?)"); char[] data1_data = new char[500]; char[] data2_data = new char[500]; for (int i = 0; i < data1_data.length; i++) { data1_data[i] = 'a'; data2_data[i] = 'b'; } String data1_str = new String(data1_data); String data2_str = new String(data2_data); // some data to force row to be bigger than a page, ie. long row char[] data3_data = new char[10000]; char[] data4_data = new char[10000]; for (int i = 0; i < data3_data.length; i++) { data3_data[i] = 'c'; data4_data[i] = 'd'; } String data3_str = new String(data3_data); String data4_str = new String(data4_data); // some data for the long columns char[] data5_data = new char[200000]; char[] data6_data = new char[200000]; for (int i = 0; i < data5_data.length; i++) { data5_data[i] = 'e'; data6_data[i] = 'f'; } String data5_str = new String(data5_data); String data6_str = new String(data6_data); for (int i = 0; i < num_rows; i++) { insert_stmt.setInt(1, i); // keycol insert_stmt.setString(2, data5_str); // longcol1 insert_stmt.setString(3, data3_str); // longrow1 insert_stmt.setString(4, data3_str); // longrow2 insert_stmt.setString(5, data3_str); // longrow3 insert_stmt.setString(6, data3_str); // longrow4 insert_stmt.setInt(7, i * 10); // indcol1 insert_stmt.setInt(8, i * 100); // indcol2 insert_stmt.setInt(9, -i); // indcol3 insert_stmt.setString(10, data1_str); // data1_data insert_stmt.setString(11, data2_str); // data2_data insert_stmt.setString(12, data4_str); // longrow5 insert_stmt.setString(13, data4_str); // longrow6 insert_stmt.setString(14, data4_str); // longrow7 insert_stmt.setString(15, data4_str); // longrow8 insert_stmt.setString(16, data5_str); // longcol2 insert_stmt.execute(); } if (create_table) { Statement s = conn.createStatement(); s.execute( "create index " + tblname + "_idx_keycol on " + tblname + "(keycol)"); s.execute( "create index " + tblname + "_idx_indcol1 on " + tblname + "(indcol1)"); s.execute( "create index " + tblname + "_idx_indcol2 on " + tblname + "(indcol2)"); s.execute( "create unique index " + tblname + "_idx_indcol3 on " + tblname + "(indcol3)"); s.close(); } conn.commit(); } private void log_wrong_count( String error_msg, String table_name, int num_rows, int expected_val, int actual_val, int[] before_info, int[] after_info) { System.out.println(error_msg); System.out.println("ERROR: for " + num_rows + " row test. Expected " + expected_val + ", but got " + actual_val ); System.out.println("before_info:"); System.out.println( " IS_INDEX =" + before_info[SPACE_INFO_IS_INDEX] + "\n NUM_ALLOC =" + before_info[SPACE_INFO_NUM_ALLOC] + "\n NUM_FREE =" + before_info[SPACE_INFO_NUM_FREE] + "\n NUM_UNFILLED =" + before_info[SPACE_INFO_NUM_UNFILLED] + "\n PAGE_SIZE =" + before_info[SPACE_INFO_PAGE_SIZE] + "\n ESTIMSPACESAVING =" + before_info[SPACE_INFO_ESTIMSPACESAVING]); System.out.println("after_info:"); System.out.println( " IS_INDEX =" + after_info[SPACE_INFO_IS_INDEX] + "\n NUM_ALLOC =" + after_info[SPACE_INFO_NUM_ALLOC] + "\n NUM_FREE =" + after_info[SPACE_INFO_NUM_FREE] + "\n NUM_UNFILLED =" + after_info[SPACE_INFO_NUM_UNFILLED] + "\n PAGE_SIZE =" + after_info[SPACE_INFO_PAGE_SIZE] + "\n ESTIMSPACESAVING =" + after_info[SPACE_INFO_ESTIMSPACESAVING]); } private void deleteAllRows( Connection conn, boolean create_table, boolean long_table, String schemaName, String table_name, int num_rows) throws SQLException { testProgress( "begin deleteAllRows," + num_rows + " row test, create = " + create_table + "."); if (long_table) createAndLoadLongTable(conn, create_table, table_name, num_rows); else createAndLoadTable(conn, create_table, table_name, num_rows, 0); if (verbose) testProgress("Calling compress."); // compress with no deletes should not affect size int[] ret_before = getSpaceInfo(conn, "APP", table_name, true); callCompress(conn, "APP", table_name, true, true, true, true); int[] ret_after = getSpaceInfo(conn, "APP", table_name, true); if (ret_after[SPACE_INFO_NUM_ALLOC] != ret_before[SPACE_INFO_NUM_ALLOC]) { log_wrong_count( "Expected no alloc page change.", table_name, num_rows, ret_before[SPACE_INFO_NUM_ALLOC], ret_after[SPACE_INFO_NUM_ALLOC], ret_before, ret_after); } if (verbose) testProgress("calling consistency checker."); if (!checkConsistency(conn, schemaName, table_name)) { logError("conistency check failed."); } testProgress("no delete case complete."); // delete all the rows. ret_before = getSpaceInfo(conn, "APP", table_name, true); executeQuery(conn, "delete from " + table_name, true); if (verbose) testProgress("deleted all rows, now calling compress."); callCompress(conn, "APP", table_name, true, true, true, true); ret_after = getSpaceInfo(conn, "APP", table_name, true); // An empty table has 2 pages, one allocation page and the 1st page // which will have a system row in it. The space vti only reports // a count of the user pages so the count is 1. if (ret_after[SPACE_INFO_NUM_ALLOC] != 1) { log_wrong_count( "Expected all pages to be truncated.", table_name, num_rows, 1, ret_after[SPACE_INFO_NUM_ALLOC], ret_before, ret_after); } if (verbose) testProgress("calling consistency checker."); if (!checkConsistency(conn, schemaName, table_name)) { logError("conistency check failed."); } testProgress("delete all rows case succeeded."); conn.commit(); testProgress("end deleteAllRows," + num_rows + " row test."); } private void simpleDeleteAllRows(
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -