~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/kill.test

  • Committer: Brian Aker
  • Date: 2008-07-28 18:01:38 UTC
  • Revision ID: brian@tangent.org-20080728180138-q2pxlq0qiapvqsdn
Remove YEAR field type

Show diffs side-by-side

added added

removed removed

Lines of Context:
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,5,20,23
28
 
select 1;
29
 
--error 0,5,20,23
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);
49
 
create table t2 (id int not null);
50
 
 
51
 
connect (conn1, localhost, root,,);
52
 
connection conn1;
53
 
 
54
 
begin;
55
 
let $1 = 4096;
56
 
while ($1)
57
 
{
58
 
  eval insert into t1 values ($1);
59
 
  dec $1;
60
 
}
61
 
commit;
62
 
 
63
 
insert into t2 select id from t1;
64
 
 
65
 
create table t3 (kill_id int);
66
 
insert into t3 values(connection_id());
67
 
connect (conn2, localhost, root,,);
68
 
connection conn2;
69
 
 
70
 
connection conn1;
71
 
# This is a very long running query. If this test start failing, it may
72
 
# be necessary to change to an even longer query.
73
 
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);
74
 
 
75
 
connection conn2;
76
 
select ((@id := kill_id) - kill_id) from t3;
77
 
kill @id;
78
 
 
79
 
connection conn1;
80
 
reap;
81
 
 
82
 
connection default;
83
 
 
84
 
drop table t1, t2, t3;
85
 
 
86
 
# End of 4.1 tests
87
 
 
88
 
# Fix issue with kill $
89
 
#create table t1(f1 int);
90
 
#
91
 
## Test UPDATE
92
 
#insert into t1 values(0);
93
 
#connection con2;
94
 
#send update t1 set f1= bug27563();
95
 
#real_sleep 2;
96
 
#connection con1;
97
 
#disable_query_log;
98
 
#kill query $ID;
99
 
#enable_query_log;
100
 
#connection con2;
101
 
#--error 1317
102
 
#reap;
103
 
#select @a;
104
 
#connection con1;
105
 
#select * from t1;
106
 
#
107
 
## Test DELETE
108
 
#insert into t1 values(1);
109
 
#connection con2;
110
 
#send delete from t1 where bug27563() is null;
111
 
#real_sleep 2;
112
 
#connection con1;
113
 
#disable_query_log;
114
 
#eval kill query $ID;
115
 
#enable_query_log;
116
 
#connection con2;
117
 
#--error 1317
118
 
#reap;
119
 
#select @a;
120
 
#connection con1;
121
 
#select * from t1;
122
 
#
123
 
## Test SELECT
124
 
#connection con2;
125
 
#send select * from t1 where f1= bug27563();
126
 
#real_sleep 2;
127
 
#connection con1;
128
 
#disable_query_log;
129
 
#eval kill query $ID;
130
 
#enable_query_log;
131
 
#connection con2;
132
 
#--error 1317
133
 
#reap;
134
 
#select @a;
135
 
#
136
 
#
137
 
###########################################################################
138
 
 
139
 
--echo #
140
 
--echo # Bug#19723: kill of active connection yields different error code
141
 
--echo # depending on platform.
142
 
--echo #
143
 
 
144
 
--echo
145
 
--echo # Connection: con2.
146
 
--connection con2
147
 
 
148
 
KILL CONNECTION_ID();
149
 
 
150
 
--echo # CR_SERVER_LOST, CR_SERVER_GONE_ERROR, depending on the timing 
151
 
--echo # of close of the connection socket
152
 
--error 5, 20, 23
153
 
SELECT 1;
154
 
--connection default
155
 
 
156
 
###########################################################################