handler.inc 10.9 KB
Newer Older
unknown's avatar
unknown committed
1 2
# include/handler.inc
#
unknown's avatar
unknown committed
3
# The variables
unknown's avatar
unknown committed
4
#     $engine_type       -- storage engine to be tested
unknown's avatar
unknown committed
5 6 7 8 9 10 11
#     $other_engine_type -- storage engine <> $engine_type
#     $other_handler_engine_type -- storage engine <> $engine_type, if possible
#                           1. $other_handler_engine_type must support handler
#                           2. $other_handler_engine_type must point to an all
#                              time available storage engine
#                              2006-08 MySQL 5.1 MyISAM and MEMORY only
# have to be set before sourcing this script.
12
-- source include/not_embedded.inc
13 14 15
#
# test of HANDLER ...
#
unknown's avatar
unknown committed
16 17 18 19 20
# Last update:
# 2006-07-31 ML test refactored (MySQL 5.1)
#               code of t/handler.test and t/innodb_handler.test united
#               main testing code put into include/handler.inc
#
21

unknown's avatar
unknown committed
22
eval SET SESSION STORAGE_ENGINE = $engine_type;
23

24
--disable_warnings
unknown's avatar
unknown committed
25
drop table if exists t1,t3,t4,t5;
26 27
--enable_warnings

unknown's avatar
unknown committed
28
create table t1 (a int, b char(10), key a(a), key b(a,b));
29
insert into t1 values
unknown's avatar
unknown committed
30
(17,"ddd"),(18,"eee"),(19,"fff"),(19,"yyy"),
unknown's avatar
unknown committed
31
(14,"aaa"),(15,"bbb"),(16,"ccc"),(16,"xxx"),
32
(20,"ggg"),(21,"hhh"),(22,"iii");
unknown's avatar
unknown committed
33
handler t1 open as t2;
unknown's avatar
unknown committed
34 35
-- error 1064
handler t2 read a=(SELECT 1);
unknown's avatar
unknown committed
36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54
handler t2 read a first;
handler t2 read a next;
handler t2 read a next;
handler t2 read a prev;
handler t2 read a last;
handler t2 read a prev;
handler t2 read a prev;

handler t2 read a first;
handler t2 read a prev;

handler t2 read a last;
handler t2 read a prev;
handler t2 read a next;
handler t2 read a next;

handler t2 read a=(15);
handler t2 read a=(16);

55 56
--error 1070
handler t2 read a=(19,"fff");
57

unknown's avatar
unknown committed
58 59 60 61
handler t2 read b=(19,"fff");
handler t2 read b=(19,"yyy");
handler t2 read b=(19);

62 63
--error 1109
handler t1 read a last;
unknown's avatar
unknown committed
64 65 66 67 68 69 70 71 72 73

handler t2 read a=(11);
handler t2 read a>=(11);

handler t2 read a=(18);
handler t2 read a>=(18);
handler t2 read a>(18);
handler t2 read a<=(18);
handler t2 read a<(18);

unknown's avatar
unknown committed
74 75 76 77 78
handler t2 read a first limit 5;
handler t2 read a next  limit 3;
handler t2 read a prev  limit 10;

handler t2 read a>=(16) limit 4;
unknown's avatar
unknown committed
79
handler t2 read a>=(16) limit 2,2;
unknown's avatar
unknown committed
80 81
handler t2 read a last  limit 3;

unknown's avatar
unknown committed
82 83 84 85 86 87
handler t2 read a=(19);
handler t2 read a=(19) where b="yyy";

handler t2 read first;
handler t2 read next;
handler t2 read next;
88 89
--error 1064
handler t2 read last;
unknown's avatar
unknown committed
90
handler t2 close;
91

unknown's avatar
unknown committed
92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107
handler t1 open;
handler t1 read a next; # this used to crash as a bug#5373
handler t1 read a next;
handler t1 close;

handler t1 open;
handler t1 read a prev; # this used to crash as a bug#5373
handler t1 read a prev;
handler t1 close;

handler t1 open as t2;
handler t2 read first;
eval alter table t1 engine = $engine_type;
--error 1109
handler t2 read first;

108
#
unknown's avatar
unknown committed
109
# DROP TABLE / ALTER TABLE
110 111 112 113 114 115 116
#
handler t1 open as t2;
drop table t1;
create table t1 (a int);
insert into t1 values (17);
--error 1109
handler t2 read first;
unknown's avatar
unknown committed
117
handler t1 open as t2;
unknown's avatar
unknown committed
118
eval alter table t1 engine=$other_engine_type;
unknown's avatar
unknown committed
119 120
--error 1109
handler t2 read first;
121
drop table t1;
unknown's avatar
unknown committed
122

123
#
unknown's avatar
unknown committed
124
# Test case for the bug #787
125 126 127 128 129 130 131 132 133 134 135
#
create table t1 (a int);
insert into t1 values (1),(2),(3),(4),(5),(6);
delete from t1 limit 2;
handler t1 open;
handler t1 read first;
handler t1 read first limit 1,1;
handler t1 read first limit 2,2;
delete from t1 limit 3;
handler t1 read first;
drop table t1;
136

unknown's avatar
unknown committed
137
#
unknown's avatar
unknown committed
138
# Test for #751
unknown's avatar
unknown committed
139 140 141 142 143 144
#
create table t1(a int, index(a));
insert into t1 values (1), (2), (3);
handler t1 open;
--error 1054
handler t1 read a=(W);
145 146
--error 1210
handler t1 read a=(a);
unknown's avatar
unknown committed
147
drop table t1;
148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163
#
# BUG#2304
#
create table t1 (a char(5));
insert into t1 values ("Ok");
handler t1 open as t;
handler t read first;
use mysql;
handler t read first;
handler t close;
handler test.t1 open as t;
handler t read first;
handler t close;
use test;
drop table t1;

unknown's avatar
unknown committed
164 165 166 167 168 169 170 171 172 173 174 175
#
# BUG#3649
#
create table t1 ( a int, b int, INDEX a (a) );
insert into t1 values (1,2), (2,1);
handler t1 open;
handler t1 read a=(1) where b=2;
handler t1 read a=(1) where b=3;
handler t1 read a=(1) where b=1;
handler t1 close;
drop table t1;

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
#
# Check if two database names beginning the same are seen as different.
#
# This database begins like the usual 'test' database.
#
--disable_warnings
drop database if exists test_test;
--enable_warnings
create database test_test;
use test_test;
create table t1(table_id char(20) primary key);
insert into t1 values ('test_test.t1');
insert into t1 values ('');
handler t1 open;
handler t1 read first limit 9;
create table t2(table_id char(20) primary key);
insert into t2 values ('test_test.t2');
insert into t2 values ('');
handler t2 open;
handler t2 read first limit 9;
#
# This is the usual 'test' database.
#
use test;
--disable_warnings
drop table if exists t1;
--enable_warnings
create table t1(table_id char(20) primary key);
insert into t1 values ('test.t1');
insert into t1 values ('');
--error 1066
handler t1 open;
#
# Check accesibility of all the tables.
#
use test;
unknown's avatar
unknown committed
212
--error 1064
213
handler test.t1 read first limit 9;
unknown's avatar
unknown committed
214
--error 1064
215 216
handler test_test.t1 read first limit 9;
handler t1 read first limit 9;
unknown's avatar
unknown committed
217
--error 1064
218 219
handler test_test.t2 read first limit 9;
handler t2 read first limit 9;
unknown's avatar
unknown committed
220

221 222 223 224
#
# Cleanup.
#

unknown's avatar
unknown committed
225
--error 1064
226 227 228
handler test_test.t1 close;
handler t1 close;
drop table test_test.t1;
unknown's avatar
unknown committed
229
--error 1064
230 231 232 233
handler test_test.t2 close;
handler t2 close;
drop table test_test.t2;
drop database test_test;
unknown's avatar
unknown committed
234

235 236
#
use test;
unknown's avatar
unknown committed
237
--error 1064
238
handler test.t1 close;
unknown's avatar
unknown committed
239
--error 1109
240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275
handler t1 close;
drop table test.t1;

#
# BUG#4335
#
--disable_warnings
drop database if exists test_test;
drop table if exists t1;
drop table if exists t2;
drop table if exists t3;
--enable_warnings
create database test_test;
use test_test;
create table t1 (c1 char(20));
insert into t1 values ('test_test.t1');
create table t3 (c1 char(20));
insert into t3 values ('test_test.t3');
handler t1 open;
handler t1 read first limit 9;
handler t1 open h1;
handler h1 read first limit 9;
use test;
create table t1 (c1 char(20));
create table t2 (c1 char(20));
create table t3 (c1 char(20));
insert into t1 values ('t1');
insert into t2 values ('t2');
insert into t3 values ('t3');
--error 1066
handler t1 open;
--error 1066
handler t2 open t1;
--error 1066
handler t3 open t1;
handler t1 read first limit 9;
unknown's avatar
unknown committed
276
--error 1064
277 278 279 280 281 282 283 284 285 286 287
handler test.t1 close;
--error 1066
handler test.t1 open h1;
--error 1066
handler test_test.t1 open h1;
handler test_test.t3 open h3;
handler test.t1 open h2;
handler t1 read first limit 9;
handler h1 read first limit 9;
handler h2 read first limit 9;
handler h3 read first limit 9;
unknown's avatar
unknown committed
288 289
handler h2 read first limit 9;
--error 1064
290
handler test.h1 close;
unknown's avatar
unknown committed
291 292
handler t1 close;
handler h1 close;
293 294 295 296 297 298 299 300
handler h2 close;
--error 1109
handler t1 read first limit 9;
--error 1109
handler h1 read first limit 9;
--error 1109
handler h2 read first limit 9;
handler h3 read first limit 9;
unknown's avatar
unknown committed
301
handler h3 read first limit 9;
302 303
use test_test;
handler h3 read first limit 9;
unknown's avatar
unknown committed
304
--error 1064
305
handler test.h3 read first limit 9;
unknown's avatar
unknown committed
306
handler h3 close;
307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336
use test;
drop table t3;
drop table t2;
drop table t1;
drop database test_test;

#
# Test if fix for BUG#4286 correctly closes handler tables.
#
create table t1 (c1 char(20));
insert into t1 values ("t1");
handler t1 open as h1;
handler h1 read first limit 9;
create table t2 (c1 char(20));
insert into t2 values ("t2");
handler t2 open as h2;
handler h2 read first limit 9;
create table t3 (c1 char(20));
insert into t3 values ("t3");
handler t3 open as h3;
handler h3 read first limit 9;
create table t4 (c1 char(20));
insert into t4 values ("t4");
handler t4 open as h4;
handler h4 read first limit 9;
create table t5 (c1 char(20));
insert into t5 values ("t5");
handler t5 open as h5;
handler h5 read first limit 9;
# close first
unknown's avatar
unknown committed
337
eval alter table t1 engine=$other_handler_engine_type;
338
--error 1109
339 340 341 342 343 344
handler h1 read first limit 9;
handler h2 read first limit 9;
handler h3 read first limit 9;
handler h4 read first limit 9;
handler h5 read first limit 9;
# close last
unknown's avatar
unknown committed
345
eval alter table t5 engine=$other_handler_engine_type;
346
--error 1109
347 348 349 350
handler h1 read first limit 9;
handler h2 read first limit 9;
handler h3 read first limit 9;
handler h4 read first limit 9;
351
--error 1109
352 353
handler h5 read first limit 9;
# close middle
unknown's avatar
unknown committed
354
eval alter table t3 engine=$other_handler_engine_type;
355
--error 1109
356 357
handler h1 read first limit 9;
handler h2 read first limit 9;
358
--error 1109
359 360
handler h3 read first limit 9;
handler h4 read first limit 9;
361
--error 1109
362 363 364 365 366 367 368 369 370 371
handler h5 read first limit 9;
handler h2 close;
handler h4 close;
# close all depending handler tables
handler t1 open as h1_1;
handler t1 open as h1_2;
handler t1 open as h1_3;
handler h1_1 read first limit 9;
handler h1_2 read first limit 9;
handler h1_3 read first limit 9;
unknown's avatar
unknown committed
372
eval alter table t1 engine=$engine_type;
373
--error 1109
374
handler h1_1 read first limit 9;
375
--error 1109
376
handler h1_2 read first limit 9;
377
--error 1109
378 379 380 381 382 383
handler h1_3 read first limit 9;
drop table t1;
drop table t2;
drop table t3;
drop table t4;
drop table t5;
384

385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412
#
# Bug#14397 - OPTIMIZE TABLE with an open HANDLER causes a crash
#
create table t1 (c1 int);
insert into t1 values (1);
# client 1
handler t1 open;
handler t1 read first;
# client 2
connect (con2,localhost,root,,);
connection con2;
--exec echo send the below to another connection, do not wait for the result
send optimize table t1;
--sleep 1
# client 1
--exec echo proceed with the normal connection
connection default;
handler t1 read next;
handler t1 close;
# client 2
--exec echo read the result from the other connection
connection con2;
reap;
# client 1
--exec echo proceed with the normal connection
connection default;
drop table t1;

unknown's avatar
unknown committed
413 414 415 416 417 418 419
CREATE TABLE t1 (  no1 smallint(5) NOT NULL default '0',  no2 int(10) NOT NULL default '0',  PRIMARY KEY  (no1,no2));
INSERT INTO t1 VALUES (1,274),(1,275),(2,6),(2,8),(4,1),(4,2);
HANDLER t1 OPEN;
HANDLER t1 READ `primary` = (1, 1000);
HANDLER t1 READ `primary` PREV;
DROP TABLE t1;

420
# End of 4.1 tests
421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467

#
# Addendum to Bug#14397 - OPTIMIZE TABLE with an open HANDLER causes a crash
# Show that DROP TABLE can no longer deadlock against
# FLUSH TABLES WITH READ LOCK. This is a 5.0 issue.
#
create table t1 (c1 int);
insert into t1 values (14397);
flush tables with read lock;
# The thread with the global read lock cannot drop the table itself:
--error 1223
drop table t1;
#
# client 2
# We need a second connection to try the drop.
# The drop waits for the global read lock to go away.
# Without the addendum fix it locked LOCK_open before entering the wait loop.
connection con2;
--exec echo send the below to another connection, do not wait for the result
send drop table t1;
--sleep 1
#
# client 1
# Now we need something that wants LOCK_open. A simple table access which
# opens the table does the trick.
--exec echo proceed with the normal connection
connection default;
# This would hang on LOCK_open without the 5.0 addendum fix.
select * from t1;
# Release the read lock. This should make the DROP go through.
unlock tables;
#
# client 2
# Read the result of the drop command.
connection con2;
--exec echo read the result from the other connection
reap;
#
# client 1
# Now back to normal operation. The table should not exist any more.
--exec echo proceed with the normal connection
connection default;
--error 1146
select * from t1;
# Just to be sure and not confuse the next test case writer.
drop table if exists t1;