Below is the list of changes that have just been committed into a local
5.0 repository of kostja. When kostja does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html
ChangeSet
1.1847 05/03/23 21:36:15 konstantin@stripped +2 -0
A test case for Bug#6282 "Packet error with SELECT INTO"
(the bug itself is no longer repeatable).
mysql-test/t/variables.test
1.37 05/03/23 21:36:08 konstantin@stripped +9 -0
A test case for Bug#6282 "Packet error with SELECT INTO"
mysql-test/r/variables.result
1.59 05/03/23 21:36:08 konstantin@stripped +8 -0
Results fixed (Bug#6282)
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: konstantin
# Host: dragonfly.local
# Root: /media/sda1/mysql/mysql-5.0-6282
--- 1.58/mysql-test/r/variables.result 2005-02-18 02:59:30 +03:00
+++ 1.59/mysql-test/r/variables.result 2005-03-23 21:36:08 +03:00
@@ -520,3 +520,11 @@
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;
--- 1.36/mysql-test/t/variables.test 2005-02-18 02:59:30 +03:00
+++ 1.37/mysql-test/t/variables.test 2005-03-23 21:36:08 +03:00
@@ -388,3 +388,12 @@
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;
+
| Thread |
|---|
| • bk commit into 5.0 tree (konstantin:1.1847) BUG#6282 | konstantin | 23 Mar |