summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb/t/innodb-stats-sample.test
blob: de1b0d017e919553d99ee560650cab9f1c9a158c (plain)
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
--source include/have_innodb.inc
--source include/no_valgrind_without_big.inc
#
# Test that mysqld does not crash when running ANALYZE TABLE with
# different values of the parameter innodb_stats_sample_pages.
#

# 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

let $sample_pages=`select @@innodb_stats_sample_pages`;
let $traditional=`select @@innodb_stats_traditional`;
SET GLOBAL innodb_stats_sample_pages=0;
#use new method to calculate statistics
SET GLOBAL innodb_stats_traditional=0;

# check that the value has been adjusted to 1
-- enable_result_log
SHOW VARIABLES LIKE 'innodb_stats_sample_pages';
SHOW VARIABLES LIKE 'innodb_stats_traditional';
-- disable_result_log

CREATE TABLE innodb_analyze (
	a INT,
	b INT,
        c char(50),
	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=1;
ANALYZE TABLE innodb_analyze;

SET GLOBAL innodb_stats_sample_pages=8000;
ANALYZE TABLE innodb_analyze;

delimiter //;
create procedure innodb_insert_proc (repeat_count int)
begin
  declare current_num int;
  set current_num = 0;
  while current_num < repeat_count do
    insert into innodb_analyze values(current_num, current_num*100,substring(MD5(RAND()), -44));
    set current_num = current_num + 1;
  end while;
end//
delimiter ;//
commit;

set autocommit=0;
call innodb_insert_proc(7000);
commit;
set autocommit=1;

SET GLOBAL innodb_stats_sample_pages=1;
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;

SET GLOBAL innodb_stats_sample_pages=8000;
ANALYZE TABLE innodb_analyze;

DROP PROCEDURE innodb_insert_proc;
DROP TABLE innodb_analyze;
EVAL SET GLOBAL innodb_stats_sample_pages=$sample_pages;
EVAL SET GLOBAL innodb_stats_traditional=$traditional;