diff options
author | Sergey Petrunya <psergey@askmonty.org> | 2009-09-18 05:04:43 +0400 |
---|---|---|
committer | Sergey Petrunya <psergey@askmonty.org> | 2009-09-18 05:04:43 +0400 |
commit | 55298d1b3e7b85a9840f13ece166ceb8a1cbdf5c (patch) | |
tree | d781215599025fdb5d5058388da357f24bcd58d7 /mysql-test/t/myisam.test | |
parent | bb2b859225daacbbe4b41b9d5e358ec183c185df (diff) | |
download | mariadb-git-55298d1b3e7b85a9840f13ece166ceb8a1cbdf5c.tar.gz |
A change of direction for fix 10 csets ago:
- When the table is created with an attribute that is not supported by
the storage engine, the attribute ought to be still kept.
Diffstat (limited to 'mysql-test/t/myisam.test')
-rw-r--r-- | mysql-test/t/myisam.test | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/t/myisam.test b/mysql-test/t/myisam.test index c3e236933c1..3e9bc69f725 100644 --- a/mysql-test/t/myisam.test +++ b/mysql-test/t/myisam.test @@ -1478,7 +1478,10 @@ let $MYSQLD_DATADIR= `select @@datadir`; --exec $MYISAMCHK -d $MYSQLD_DATADIR/test/t1 DROP TABLE t1; +# # Test warnings with transactional=1 with MyISAM +# MariaDB: Note that the table will still have 'TRANSACTIONAL=1' attribute. +# That's the intended behavior atm. # create table t1 (n int not null, c char(1)) transactional=1; show create table t1; |