summaryrefslogtreecommitdiff
path: root/mysql-test/r/update.result
diff options
context:
space:
mode:
authorunknown <ramil@mysql.com>2005-03-17 10:59:25 +0400
committerunknown <ramil@mysql.com>2005-03-17 10:59:25 +0400
commit3e4ae65a144d8f7a63ee5f8c4d1ec65f94f35b58 (patch)
treeb43774a62a0b70321de5c0b260002b95fde4d49a /mysql-test/r/update.result
parenta131e4d12dabef51820a3c4c69501c647a11b25c (diff)
parent7ceb5c6cef7c1b9bebe3869e9836035fbb177601 (diff)
downloadmariadb-git-3e4ae65a144d8f7a63ee5f8c4d1ec65f94f35b58.tar.gz
Merge
sql/key.cc: Auto merged mysql-test/r/update.result: SCCS merged mysql-test/t/update.test: SCCS merged
Diffstat (limited to 'mysql-test/r/update.result')
-rw-r--r--mysql-test/r/update.result7
1 files changed, 7 insertions, 0 deletions
diff --git a/mysql-test/r/update.result b/mysql-test/r/update.result
index ac370db9ecc..4a9e95fb89e 100644
--- a/mysql-test/r/update.result
+++ b/mysql-test/r/update.result
@@ -219,3 +219,10 @@ select * from t1;
id id_str
1 test1
drop table t1;
+create table t1 (a int, b char(255), key(a, b(20)));
+insert into t1 values (0, '1');
+update t1 set b = b + 1 where a = 0;
+select * from t1;
+a b
+0 2
+drop table t1;