mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge 10.2 into 10.3
This commit is contained in:
@ -269,6 +269,14 @@ alter table mysql.slow_log engine=memory;
|
||||
#alter table mysql.slow_log engine=blackhole;
|
||||
set storage_engine= @save_storage_engine;
|
||||
|
||||
# Make sure only non-transactional Aria table can be used for logging
|
||||
--error ER_UNSUPORTED_LOG_ENGINE
|
||||
ALTER TABLE mysql.general_log ENGINE=Aria;
|
||||
ALTER TABLE mysql.general_log ENGINE=Aria transactional = 0;
|
||||
--error ER_UNSUPORTED_LOG_ENGINE
|
||||
ALTER TABLE mysql.slow_log ENGINE=Aria;
|
||||
ALTER TABLE mysql.slow_log ENGINE=Aria transactional = 0;
|
||||
|
||||
drop table mysql.slow_log;
|
||||
drop table mysql.general_log;
|
||||
|
||||
|
Reference in New Issue
Block a user