diff options
author | unknown <ramil/ram@ramil.myoffice.izhnet.ru> | 2007-06-04 10:14:28 +0500 |
---|---|---|
committer | unknown <ramil/ram@ramil.myoffice.izhnet.ru> | 2007-06-04 10:14:28 +0500 |
commit | ec30069a2e212e5ed8bc9ad893601ca779267ae1 (patch) | |
tree | 0dcbdc079f8d11773329a375db5ceebc6627f50a /mysql-test/include/mix1.inc | |
parent | dc95f085394a7d0e5237737e3bef52c1b0e773b2 (diff) | |
parent | 55aa43e2f52acfe88c633f6aeec3089ef68b0e19 (diff) | |
download | mariadb-git-ec30069a2e212e5ed8bc9ad893601ca779267ae1.tar.gz |
Merge mysql.com:/home/ram/work/b28652/b28652.5.0
into mysql.com:/home/ram/work/b28652/b28652.5.1
mysql-test/include/mix1.inc:
manual merge
mysql-test/r/innodb_mysql.result:
manual merge
sql/sql_table.cc:
manual merge
Diffstat (limited to 'mysql-test/include/mix1.inc')
-rw-r--r-- | mysql-test/include/mix1.inc | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mysql-test/include/mix1.inc b/mysql-test/include/mix1.inc index 2b876d10cf2..f995e867e09 100644 --- a/mysql-test/include/mix1.inc +++ b/mysql-test/include/mix1.inc @@ -633,6 +633,14 @@ EXPLAIN SELECT COUNT(*) FROM t2 WHERE stat_id IN (1,3) AND acct_id=785; DROP TABLE t1,t2; +# +# Bug #28652: assert when alter innodb table operation +# +create table t1(a int) engine=innodb; +alter table t1 comment '123'; +show create table t1; +drop table t1; + --echo End of 5.0 tests # |