summaryrefslogtreecommitdiff
path: root/mysql-test/r
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
commitc9fa277d967ed1b93255c6df56d12911c11dc776 (patch)
treeb43774a62a0b70321de5c0b260002b95fde4d49a /mysql-test/r
parente7dae8eb7ca4cf6df22bd0e3a7b815efe085698c (diff)
parenteb771658a767b8238ff1774472f06450212d3ff4 (diff)
downloadmariadb-git-c9fa277d967ed1b93255c6df56d12911c11dc776.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')
-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;