diff options
author | unknown <cmiller@zippy.cornsilk.net> | 2006-10-09 18:50:12 -0400 |
---|---|---|
committer | unknown <cmiller@zippy.cornsilk.net> | 2006-10-09 18:50:12 -0400 |
commit | 6c91170e3f90b73298d40286cdb84e47d8d31c8a (patch) | |
tree | c3380f95b56df4905a21a4d7f2877ccbd926e44a /mysql-test/r/mysql.result | |
parent | 426b0f45a644472b59c6f337cbcd70f731b32ab8 (diff) | |
download | mariadb-git-6c91170e3f90b73298d40286cdb84e47d8d31c8a.tar.gz |
Bug#17583: mysql drops connection when stdout is not writable
Porting forward tests to replacement files.
mysql-test/r/mysql.result:
Ported changes from previous commit to new file.
mysql-test/t/mysql.test:
Ported changes from previous commit to new file.
Diffstat (limited to 'mysql-test/r/mysql.result')
-rw-r--r-- | mysql-test/r/mysql.result | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/mysql-test/r/mysql.result b/mysql-test/r/mysql.result index 7dbff4beca5..c8dcafe4a47 100644 --- a/mysql-test/r/mysql.result +++ b/mysql-test/r/mysql.result @@ -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 |