diff options
author | unknown <kostja@bodhi.(none)> | 2007-07-15 13:34:35 +0400 |
---|---|---|
committer | unknown <kostja@bodhi.(none)> | 2007-07-15 13:34:35 +0400 |
commit | 8023d91929247f1b2e2f81ca10daca4dde4ab2e2 (patch) | |
tree | bf1e66e6258f0060f5f3914d311a4d1cd063f325 /mysql-test/r/innodb_mysql.result | |
parent | 42a41896f83a37d2f81a151bb3e6bf38165be733 (diff) | |
download | mariadb-git-8023d91929247f1b2e2f81ca10daca4dde4ab2e2.tar.gz |
Add a teste case for Bug#27296 "Assertion in ALTER TABLE SET DEFAULT in
Linux Debug build (possible deadlock)"
The bug is not repeatable any more.
mysql-test/r/innodb_mysql.result:
Update test results (Bug#27296)
mysql-test/t/innodb_mysql.test:
Add a teste case for Bug#27296 "Assertion in ALTER TABLE SET DEFAULT in
Linux Debug build (possible deadlock)"
Diffstat (limited to 'mysql-test/r/innodb_mysql.result')
-rw-r--r-- | mysql-test/r/innodb_mysql.result | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/r/innodb_mysql.result b/mysql-test/r/innodb_mysql.result index 11c7c2aedc9..847805e7b6f 100644 --- a/mysql-test/r/innodb_mysql.result +++ b/mysql-test/r/innodb_mysql.result @@ -676,4 +676,8 @@ INSERT INTO t1 VALUES (1); switch to connection default SET AUTOCOMMIT=default; DROP TABLE t1,t2; +drop table if exists t1; +create table t1 (a int) engine=innodb; +alter table t1 alter a set default 1; +drop table t1; End of 5.0 tests |