From 06cfe9a4a44d3c72249400141e1eb8b649f15b29 Mon Sep 17 00:00:00 2001 From: "konstantin@mysql.com" <> Date: Wed, 23 Mar 2005 21:36:15 +0300 Subject: [PATCH] A test case for Bug#6282 "Packet error with SELECT INTO" (the bug itself is no longer repeatable). --- mysql-test/r/variables.result | 8 ++++++++ mysql-test/t/variables.test | 9 +++++++++ 2 files changed, 17 insertions(+) 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; diff --git a/mysql-test/t/variables.test b/mysql-test/t/variables.test index 5310d50b7cb..ebd6edf4045 100644 --- a/mysql-test/t/variables.test +++ b/mysql-test/t/variables.test @@ -388,3 +388,12 @@ SHOW VARIABLES LIKE 'MYISAM_DATA_POINTER_SIZE'; SET GLOBAL table_cache=-1; SHOW VARIABLES LIKE 'table_cache'; SET GLOBAL table_cache=DEFAULT; + +# +# Bug#6282 Packet error with SELECT INTO +# +create table t1 (a int); +select a into @x from t1; +show warnings; +drop table t1; +