summaryrefslogtreecommitdiff
path: root/mysql-test/include/mix1.inc
diff options
context:
space:
mode:
authortsmith@ramayana.hindu.god <>2007-07-31 17:36:19 -0600
committertsmith@ramayana.hindu.god <>2007-07-31 17:36:19 -0600
commit70e14610d68a906043ded50447c5dded1dce0058 (patch)
treee4a69058f978ea7d9c5c6ec1f615a82b87abefd8 /mysql-test/include/mix1.inc
parent78da884eecdeb408924881d5add13c2409977dd1 (diff)
parent1919076d47717eaa649755dc2d512882b1fdbe43 (diff)
downloadmariadb-git-70e14610d68a906043ded50447c5dded1dce0058.tar.gz
Merge ramayana.hindu.god:/home/tsmith/m/bk/51
into ramayana.hindu.god:/home/tsmith/m/bk/maint/jul31/51
Diffstat (limited to 'mysql-test/include/mix1.inc')
-rw-r--r--mysql-test/include/mix1.inc9
1 files changed, 8 insertions, 1 deletions
diff --git a/mysql-test/include/mix1.inc b/mysql-test/include/mix1.inc
index 591971a32a4..d8bc4c40bf3 100644
--- a/mysql-test/include/mix1.inc
+++ b/mysql-test/include/mix1.inc
@@ -898,10 +898,17 @@ DISCONNECT con2;
DROP PROCEDURE p1;
DROP TABLE t1;
+#
+# Bug #28125: ERROR 2013 when adding index.
+#
+create table t1(a text) engine=innodb default charset=utf8;
+insert into t1 values('aaa');
+alter table t1 add index(a(1024));
+show create table t1;
+drop table t1;
--echo End of 5.0 tests
-
# Fix for BUG#19243 "wrong LAST_INSERT_ID() after ON DUPLICATE KEY
# UPDATE": if the row is updated, it's like a regular UPDATE:
# LAST_INSERT_ID() is not affected.