mirror of
https://github.com/MariaDB/server.git
synced 2025-05-08 15:01:49 +03:00
mysql-test/lib/mtr_cases.pm: Expand test cases list with test cases to test InnoDB plugin. mysql-test/mysql-test-run.pl: Added "innodb" suite to default list of suites. mysql-test/suite/innodb/include/have_innodb_plugin.inc: This file determines if innodb plugin is available. mysql-test/suite/innodb/my.cnf: Removed temporary my.cnf, which was added for testing. Not needed anymore - options are substituted by mtr. mysql-test/suite/innodb/t/innodb-analyze.test: This test can only be run with InnoDB plugin. mysql-test/suite/innodb/t/innodb-timeout.test: This test can only be run with InnoDB plugin. mysql-test/suite/innodb/t/innodb-use-sys-malloc-master.opt: Use "loose" prefix with mysqld options. This makes this test skipped properly when no innodb is available. mysql-test/suite/innodb/t/innodb-use-sys-malloc.test: This test can only be run with InnoDB plugin. mysql-test/suite/innodb/t/innodb-zip.test: This test can only be run with InnoDB plugin. mysql-test/suite/innodb/t/innodb_bug36169.test: This test can only be run with InnoDB plugin. mysql-test/suite/innodb/t/innodb_bug36172.test: This test can only be run with InnoDB plugin. mysql-test/suite/innodb/t/innodb_information_schema.test: This test can only be run with InnoDB plugin.
67 lines
1.5 KiB
Plaintext
67 lines
1.5 KiB
Plaintext
#
|
|
# Test that mysqld does not crash when running ANALYZE TABLE with
|
|
# different values of the parameter innodb_stats_sample_pages.
|
|
#
|
|
|
|
-- source include/have_innodb.inc
|
|
-- source suite/innodb/include/have_innodb_plugin.inc
|
|
|
|
# we care only that the following SQL commands do not produce errors
|
|
# and do not crash the server
|
|
-- disable_query_log
|
|
-- disable_result_log
|
|
-- enable_warnings
|
|
|
|
SET GLOBAL innodb_stats_sample_pages=0;
|
|
|
|
# check that the value has been adjusted to 1
|
|
-- enable_result_log
|
|
SHOW VARIABLES LIKE 'innodb_stats_sample_pages';
|
|
-- disable_result_log
|
|
|
|
CREATE TABLE innodb_analyze (
|
|
a INT,
|
|
b INT,
|
|
KEY(a),
|
|
KEY(b,a)
|
|
) ENGINE=InnoDB;
|
|
|
|
# test with empty table
|
|
|
|
ANALYZE TABLE innodb_analyze;
|
|
|
|
SET GLOBAL innodb_stats_sample_pages=2;
|
|
ANALYZE TABLE innodb_analyze;
|
|
|
|
SET GLOBAL innodb_stats_sample_pages=4;
|
|
ANALYZE TABLE innodb_analyze;
|
|
|
|
SET GLOBAL innodb_stats_sample_pages=8;
|
|
ANALYZE TABLE innodb_analyze;
|
|
|
|
SET GLOBAL innodb_stats_sample_pages=16;
|
|
ANALYZE TABLE innodb_analyze;
|
|
|
|
INSERT INTO innodb_analyze VALUES
|
|
(1,1), (1,1), (1,2), (1,3), (1,4), (1,5),
|
|
(8,1), (8,8), (8,2), (7,1), (1,4), (3,5);
|
|
|
|
SET GLOBAL innodb_stats_sample_pages=1;
|
|
ANALYZE TABLE innodb_analyze;
|
|
|
|
SET GLOBAL innodb_stats_sample_pages=2;
|
|
ANALYZE TABLE innodb_analyze;
|
|
|
|
SET GLOBAL innodb_stats_sample_pages=4;
|
|
ANALYZE TABLE innodb_analyze;
|
|
|
|
SET GLOBAL innodb_stats_sample_pages=8;
|
|
ANALYZE TABLE innodb_analyze;
|
|
|
|
SET GLOBAL innodb_stats_sample_pages=16;
|
|
ANALYZE TABLE innodb_analyze;
|
|
|
|
DROP TABLE innodb_analyze;
|
|
|
|
SET GLOBAL innodb_stats_sample_pages=DEFAULT;
|