summaryrefslogtreecommitdiff
path: root/mysql-test/t/update.test
diff options
context:
space:
mode:
authorsergefp@mysql.com <>2006-01-26 00:06:20 +0300
committersergefp@mysql.com <>2006-01-26 00:06:20 +0300
commitcfce3d823b8f2c55d933cfe0802d3184fd8251a7 (patch)
treee0945dce599e0c07521990626ff4fe35f89cc876 /mysql-test/t/update.test
parent6e984d6ede0a100edc5cf045d5e05e035c6a94e6 (diff)
parent5d0e8d81ee13ef4474266b74a12f98d18894a7e1 (diff)
downloadmariadb-git-cfce3d823b8f2c55d933cfe0802d3184fd8251a7.tar.gz
Merge
Diffstat (limited to 'mysql-test/t/update.test')
-rw-r--r--mysql-test/t/update.test11
1 files changed, 11 insertions, 0 deletions
diff --git a/mysql-test/t/update.test b/mysql-test/t/update.test
index fe76b178928..c69c56f0331 100644
--- a/mysql-test/t/update.test
+++ b/mysql-test/t/update.test
@@ -288,6 +288,17 @@ update t2,t1 set f1=3,f2=3 where f1=f2 and f1=1;
--disable_info
drop table t1,t2;
+
+# BUG#15935
+create table t1 (a int);
+insert into t1 values (0),(1),(2),(3),(4),(5),(6),(7),(8),(9);
+create table t2 (a int, filler1 char(200), filler2 char(200), key(a));
+insert into t2 select A.a + 10*B.a, 'filler','filler' from t1 A, t1 B;
+flush status;
+update t2 set a=3 where a=2;
+show status like 'handler_read%';
+drop table t1, t2;
+
#
# Bug #16510 Updating field named like '*name' caused server crash
#