1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

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.
This commit is contained in:
Sergey Petrunya
2009-09-18 05:04:43 +04:00
parent bb2b859225
commit 55298d1b3e
4 changed files with 6 additions and 11 deletions

View File

@ -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;