summaryrefslogtreecommitdiff
path: root/mysql-test/t/max_seeks_for_key_func.test
blob: cdabd43328fa9445cc9ae07aace84c0b97f9202f (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
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



#Test for max_seeks_for_key#


--disable_warnings
drop table if exists t1;
--enable_warnings


#########################
#   Creating new table  #
#########################

CREATE TABLE t1
(a int auto_increment primary key, 
b char(20)
);



--echo '#--------------------FN_DYNVARS_084_01-------------------------#'
##########################################################
#    Test behavior of variable on new connection # 01    #
##########################################################

CONNECT (test_con1,localhost,root,,);
CONNECTION test_con1;

# Value of session & global vairable here should be 10
SELECT @@global.max_seeks_for_key = 10;
SELECT @@session.max_seeks_for_key = 10;

# Setting global value of variable and inserting data in table
SET @@global.max_seeks_for_key = 20;
SELECT @@global.max_seeks_for_key;
INSERT into t1(b) values("AREc");
explain select STRAIGHT_JOIN * from t1,t1 as t2 where t1.b=t2.b;

# Setting session value of variable and inserting data in table
SET @@session.max_seeks_for_key = 2;
SELECT @@session.max_seeks_for_key;
INSERT into t1(b) values("BREc");
INSERT into t1(b) values("CRec");
explain select STRAIGHT_JOIN * from t1,t1 as t2 where t1.b=t2.b;


--echo '#--------------------FN_DYNVARS_084_02-------------------------#'
##########################################################
#    Test behavior of variable on new connection # 02    #
##########################################################


CONNECT (test_con2,localhost,root,,);
connection test_con2;


# Value of session & global vairable here should be 10
SELECT @@global.max_seeks_for_key = 10;
SELECT @@session.max_seeks_for_key = 10;

# Setting global value of variable and inserting data in table
SET @@global.max_seeks_for_key = 20;
SELECT @@global.max_seeks_for_key;
INSERT into t1(b) values("AREc");
explain select STRAIGHT_JOIN * from t1,t1 as t2 where t1.b=t2.b;

# Setting session value of variable and inserting data in table
SET @@session.max_seeks_for_key = 2;
SELECT @@session.max_seeks_for_key;
INSERT into t1(b) values("BREc");
INSERT into t1(b) values("CRec");
explain select STRAIGHT_JOIN * from t1,t1 as t2 where t1.b=t2.b;






#####################################################
#   Inserting values in  table t and analyzing table #
#####################################################

INSERT INTO t1 values(null,"test");
INSERT INTO t1 VALUES (null,"a"),(null,"a"),(null,"a"),
                     (null,"a"),(null,"a"),(null,"a"),(null,"a"),
                     (null,"a"),(null,"a"),(null,"a");
explain SELECT STRAIGHT_JOIN * from t1,t1 as t2 where t1.b=t2.b;
analyze table t1;

###################################################################
#   Setting new value for max_seeks_for_key and anaylyzing table  #
###################################################################

SET MAX_SEEKS_FOR_KEY=1;


explain select STRAIGHT_JOIN * from t1,t1 as t2 where t1.b=t2.b;
SET MAX_SEEKS_FOR_KEY=DEFAULT;

drop table t1;