~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
# Disable concurrent inserts to avoid test failures when reading the
2
# connection id which was inserted into a table by another thread.
3
connect (con1, localhost, root,,);
4
connect (con2, localhost, root,,);
5
6
#remember id of con1
7
connection con1;
8
--disable_warnings
9
drop table if exists t1, t2, t3;
10
--enable_warnings
11
12
--disable_reconnect
13
create table t1 (kill_id int);
14
insert into t1 values(connection_id());
15
16
#kill con1
17
connection con2;
18
select ((@id := kill_id) - kill_id) from t1; 
19
kill @id;
20
21
connection con1;
22
--sleep 2
23
24
--disable_query_log
25
--disable_result_log
26
# One of the following statements should fail
27
--error 0,2006,2013
28
select 1;
29
--error 0,2006,2013
30
select 1;
31
--enable_query_log
32
--enable_result_log
33
34
--enable_reconnect
35
# this should work, and we should have a new connection_id()
36
select ((@id := kill_id) - kill_id) from t1;
37
select @id != connection_id();
38
39
#make sure the server is still alive
40
connection con2;
41
select 4;
42
drop table t1;
43
connection default;
44
45
#
46
# BUG#14851: killing long running subquery processed via a temporary table.
47
#
48
create table t1 (id int primary key);
413.2.2 by Brian Aker
Removed UNSIGNED from parser.
49
create table t2 (id int not null);
1 by brian
clean slate
50
51
connect (conn1, localhost, root,,);
52
connection conn1;
53
54
-- disable_result_log
55
-- disable_query_log
56
let $1 = 4096;
57
while ($1)
58
{
59
  eval insert into t1 values ($1);
60
  dec $1;
61
}
62
-- enable_query_log
63
-- enable_result_log
64
65
insert into t2 select id from t1;
66
67
create table t3 (kill_id int);
68
insert into t3 values(connection_id());
69
connect (conn2, localhost, root,,);
70
connection conn2;
71
72
connection conn1;
73
-- disable_result_log
74
# This is a very long running query. If this test start failing, it may
75
# be necessary to change to an even longer query.
76
send select id from t1 where id in (select distinct a.id from t2 a, t2 b, t2 c, t2 d group by a.id, b.id, c.id, d.id having a.id between 10 and 20);
77
-- enable_result_log
78
79
connection conn2;
80
select ((@id := kill_id) - kill_id) from t3;
81
-- sleep 1
82
kill @id;
83
84
connection conn1;
520.1.20 by Brian Aker
SQL_BIG_TABLES has been removed.
85
-- error 1053,2013,1104
1 by brian
clean slate
86
reap;
87
88
connection default;
89
90
drop table t1, t2, t3;
91
92
# End of 4.1 tests
93
520.1.19 by Brian Aker
Adding kill test
94
# Fix issue with kill $
95
#create table t1(f1 int);
96
#
97
## Test UPDATE
98
#insert into t1 values(0);
99
#connection con2;
100
#send update t1 set f1= bug27563();
101
#real_sleep 2;
102
#connection con1;
103
#disable_query_log;
104
#kill query $ID;
105
#enable_query_log;
106
#connection con2;
107
#--error 1317
108
#reap;
109
#select @a;
110
#connection con1;
111
#select * from t1;
112
#
113
## Test DELETE
114
#insert into t1 values(1);
115
#connection con2;
116
#send delete from t1 where bug27563() is null;
117
#real_sleep 2;
118
#connection con1;
119
#disable_query_log;
120
#eval kill query $ID;
121
#enable_query_log;
122
#connection con2;
123
#--error 1317
124
#reap;
125
#select @a;
126
#connection con1;
127
#select * from t1;
128
#
129
## Test SELECT
130
#connection con2;
131
#send select * from t1 where f1= bug27563();
132
#real_sleep 2;
133
#connection con1;
134
#disable_query_log;
135
#eval kill query $ID;
136
#enable_query_log;
137
#connection con2;
138
#--error 1317
139
#reap;
140
#select @a;
141
#
142
#
1 by brian
clean slate
143
###########################################################################
144
145
--echo #
146
--echo # Bug#19723: kill of active connection yields different error code
147
--echo # depending on platform.
148
--echo #
149
150
--echo
151
--echo # Connection: con2.
152
--connection con2
153
154
KILL CONNECTION_ID();
155
156
--echo # CR_SERVER_LOST, CR_SERVER_GONE_ERROR, depending on the timing 
157
--echo # of close of the connection socket
158
--error 2013, 2006 
159
SELECT 1;
160
--connection default
161
162
###########################################################################