summaryrefslogtreecommitdiff
path: root/mysql-test/suite/sys_vars/t/sql_select_limit_func.test
blob: 99bc05c465c24afab6c9b1e6790adb5930d8f097 (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
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
############# mysql-test\t\sql_select_limit_func.test #####################
#                                                                         #
# Variable Name: sql_select_limit                                         #
# Scope: GLOBAL, SESSION                                                  #
# Access Type: Dynamic                                                    #
# Data Type: NUMERIC                                                      #
# Default Value: 4294967295                                               #
# Values:       1-4294967295                                              #
#                                                                         #
#                                                                         #
# Creation Date: 2008-02-25                                               #
# Author:  Sharique Abdullah                                              #
#                                                                         #
# Description: Test Cases of Dynamic System Variable "sql_select_limit"   #
#              that checks behavior of this variable in the following ways#
#              * Functionality based on different values                  #
#                                                                         #
# Reference: http://dev.mysql.com/doc/refman/5.1/en/set-option.html       #
#                                                                         #
###########################################################################

--echo ** Setup **
--echo
#
# Setup
#

SET @session_sql_select_limit = @@SESSION.sql_select_limit;
SET @global_sql_select_limit = @@GLOBAL.sql_select_limit;

#
# Creating tables
#

CREATE TEMPORARY TABLE t1(a int PRIMARY KEY, b varchar(20));
CREATE TEMPORARY TABLE t2(a int PRIMARY KEY, b varchar(20));
CREATE TEMPORARY TABLE t3(a int PRIMARY KEY, b varchar(20));

INSERT INTO t1 VALUES(1, 'val1');
INSERT INTO t1 VALUES(2, 'val2');
INSERT INTO t1 VALUES(3, 'val3');
INSERT INTO t1 VALUES(4, 'val4');
INSERT INTO t1 VALUES(5, 'val5');
INSERT INTO t1 VALUES(6, 'val6');
INSERT INTO t1 VALUES(7, 'val7');
INSERT INTO t1 VALUES(8, 'val8');
INSERT INTO t1 VALUES(9, 'val9');

INSERT INTO t2 VALUES(5, 'val5');
INSERT INTO t2 VALUES(6, 'val6');
INSERT INTO t2 VALUES(7, 'val7');
INSERT INTO t2 VALUES(8, 'val8');
INSERT INTO t2 VALUES(9, 'val9');



--echo '#-----------------------------FN_DYNVARS_165_01-----------------#'
--echo
--echo Value DEFAULT
--echo
#
# Value DEFAULT
#

--enable_info

SET SESSION sql_select_limit = DEFAULT;

SELECT * FROM t1;
--echo Expecting affected rows: 9

SELECT * FROM t1 INNER JOIN t2 ON t1.a = t2.a;
--echo Expecting affected rows: 5


--echo '#-----------------------------FN_DYNVARS_165_02---------------#'
#
# Small value
#

SET SESSION sql_select_limit = 2;

SELECT * FROM t1;
--echo Expecting affected rows: 2

SELECT * FROM t1 INNER JOIN t2 ON t1.a = t2.a;
--echo Expecting affected rows: 2

SET SESSION sql_select_limit = 0;

SELECT * FROM t1;
--echo Expecting affected rows: 0

SELECT * FROM t1 INNER JOIN t2 ON t1.a = t2.a;
--echo Expecting affected rows: 0

--echo '#-----------------------------FN_DYNVARS_165_03---------------#'
#
# Small value with LIMIT Clause
#

SET SESSION sql_select_limit = 2;

SELECT * FROM t1 LIMIT 4;
--echo Expecting affected rows: 4

SELECT * FROM t1 INNER JOIN t2 ON t1.a = t2.a LIMIT 3;
--echo Expecting affected rows: 3

--echo '#-----------------------------FN_DYNVARS_165_04----------------#'
#
# Small value with Store procedure
#

SET SESSION sql_select_limit = 2;

delimiter |;

CREATE PROCEDURE TestProc()
BEGIN
        SELECT * FROM t1;
END|
delimiter ;|

call TestProc();
--echo Expecting affected rows: 9

DROP PROCEDURE TestProc;

delimiter |;

CREATE PROCEDURE TestProc()
BEGIN
        SELECT * FROM t1 INNER JOIN t2 ON t1.a = t2.a;
END|
delimiter ;|

call TestProc();
--echo Expecting affected rows: 5

DROP PROCEDURE TestProc;

--echo '#-----------------------------FN_DYNVARS_165_05-----------------#'
#
# Small value with Non result producing SELECT statements
#

SET SESSION sql_select_limit = 2;

CREATE TEMPORARY TABLE t4(a int PRIMARY KEY, b varchar(20)) SELECT * FROM t2;
--echo Expecting Records: 5

INSERT INTO t3 SELECT * FROM t1;
--echo Expecting Records: 9

--echo '#-----------------------------FN_DYNVARS_165_06---------------------#'
#
# Session data integrity check & GLOBAL Value check
#
--disable_info

SET GLOBAL sql_select_limit = 2;

--echo ** Connecting con_int2 using root **
connect (con_int1,localhost,root,,);

--echo ** Connection con_int1 **
connection con_int1;
SELECT @@SESSION.sql_select_limit;
--echo 2 Expected

SET SESSION sql_select_limit = 10;

--echo ** Connecting con_int2 using root **
connect (con_int2,localhost,root,,);

--echo ** Connection con_int2 **
connection con_int2;
SELECT @@SESSION.sql_select_limit;
--echo 2 Expected

SET SESSION sql_select_limit = 12;

--echo ** Connection con_int2 **
connection con_int2;
SELECT @@SESSION.sql_select_limit;
--echo 12 Expected

--echo ** Connection con_int1 **
connection con_int1;
SELECT @@SESSION.sql_select_limit;
--echo 10 Expected

SELECT @@GLOBAL.sql_select_limit;
--echo 2 Expected

--echo ** Connection default **
connection default;

--echo Disconnecting Connections con_int1, con_int2
disconnect con_int1;
disconnect con_int2;


#
# Cleanup
#

--disable_info

SET @@SESSION.sql_select_limit = @session_sql_select_limit;
SET @@GLOBAL.sql_select_limit = @global_sql_select_limit;

DROP TABLE t1;
DROP TABLE t2;
DROP TABLE t3;
DROP TABLE t4;