1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Bug#17583: mysql drops connection when stdout is not writable

Porting forward tests to replacement files.
This commit is contained in:
cmiller@zippy.cornsilk.net
2006-10-09 18:50:12 -04:00
parent 4d0023edf6
commit 438ffa81fb
2 changed files with 30 additions and 0 deletions

View File

@ -139,4 +139,17 @@ ERROR at line 1: USE must be followed by a database name
\\
';
';
create table t17583 (a int);
insert into t17583 (a) values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
insert into t17583 select a from t17583;
insert into t17583 select a from t17583;
insert into t17583 select a from t17583;
insert into t17583 select a from t17583;
insert into t17583 select a from t17583;
insert into t17583 select a from t17583;
insert into t17583 select a from t17583;
select count(*) from t17583;
count(*)
1280
drop table t17583;
End of 5.0 tests