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:
@ -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;
|
||||
|
Reference in New Issue
Block a user