~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/kill.test

Small fixes

Show diffs side-by-side

added added

removed removed

Lines of Context:
24
24
--disable_query_log
25
25
--disable_result_log
26
26
# One of the following statements should fail
27
 
--error 0,2006,2013
 
27
--error 0,5,20,23
28
28
select 1;
29
 
--error 0,2006,2013
 
29
--error 0,5,20,23
30
30
select 1;
31
31
--enable_query_log
32
32
--enable_result_log
53
53
 
54
54
-- disable_result_log
55
55
-- disable_query_log
 
56
begin;
56
57
let $1 = 4096;
57
58
while ($1)
58
59
{
59
60
  eval insert into t1 values ($1);
60
61
  dec $1;
61
62
}
 
63
commit;
62
64
-- enable_query_log
63
65
-- enable_result_log
64
66
 
155
157
 
156
158
--echo # CR_SERVER_LOST, CR_SERVER_GONE_ERROR, depending on the timing 
157
159
--echo # of close of the connection socket
158
 
--error 2013, 2006 
 
160
--error 5, 20, 23
159
161
SELECT 1;
160
162
--connection default
161
163