Won't Do
Details
Assignee
UnassignedUnassignedReporter
lpjirasynclpjirasync(Deactivated)Labels
Priority
Low
Details
Details
Assignee
Unassigned
UnassignedReporter
lpjirasync
lpjirasync(Deactivated)Labels
Priority
Smart Checklist
Smart Checklist
Smart Checklist
Created January 22, 2018 at 10:36 PM
Updated March 4, 2025 at 9:05 PM
Resolved March 4, 2025 at 9:05 PM
**Reported in Launchpad by Alexey Kopytov last update 02-02-2016 09:02:40
Currently enforce-storage-engine affects all explicitly created tables, even temporary ones:
mysql> select @@enforce_storage_engine;
--------------------------
@@enforce_storage_engine
--------------------------
innodb
--------------------------
1 row in set (0.00 sec)
mysql> create temporary table t3(a int) engine=memory;
Query OK, 0 rows affected, 1 warning (0.01 sec)
mysql> show warnings;
---------------------------------------------------------
Level
Code
Message
---------------------------------------------------------
Note
1266
Using storage engine InnoDB for table 't3'
---------------------------------------------------------
1 row in set (0.00 sec)
In most cases creating explicit temporary tables with other storage engines should be allowed. We can make this behavior optional for cases where enforcing temporary tables engine is required.