diff options
author | unknown <konstantin@mysql.com> | 2005-03-23 21:36:15 +0300 |
---|---|---|
committer | unknown <konstantin@mysql.com> | 2005-03-23 21:36:15 +0300 |
commit | f0b89ba5aaff4dcb72fb0c147212ddc15a213a9e (patch) | |
tree | 92d3dc0dd89c97b28a68d2ce1ac217c4817fdaca /mysql-test/r/variables.result | |
parent | 704b8576f744800f50bc3d56e87a8ee4f7617531 (diff) | |
download | mariadb-git-f0b89ba5aaff4dcb72fb0c147212ddc15a213a9e.tar.gz |
A test case for Bug#6282 "Packet error with SELECT INTO"
(the bug itself is no longer repeatable).
mysql-test/r/variables.result:
Results fixed (Bug#6282)
mysql-test/t/variables.test:
A test case for Bug#6282 "Packet error with SELECT INTO"
Diffstat (limited to 'mysql-test/r/variables.result')
-rw-r--r-- | mysql-test/r/variables.result | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/r/variables.result b/mysql-test/r/variables.result index 908709efba3..e3b6c2c5917 100644 --- a/mysql-test/r/variables.result +++ b/mysql-test/r/variables.result @@ -520,3 +520,11 @@ SHOW VARIABLES LIKE 'table_cache'; Variable_name Value table_cache 1 SET GLOBAL table_cache=DEFAULT; +create table t1 (a int); +select a into @x from t1; +Warnings: +Warning 1329 No data to FETCH +show warnings; +Level Code Message +Warning 1329 No data to FETCH +drop table t1; |