You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
WL#12179 Deprecate TABLESPACE=innodb_file_per_table and TABLESPACE=innodb_temporary phrases while creating temporary tables
- Added deprecation warnings while attempting to create temporary
tables using TABLESPACE=innodb_file_per_table or TABLESPACE=innodb_temporary
phrases
RB# 20140
Reviewed by: Kevin Lewis ([email protected])
ERROR HY000: InnoDB: innodb_file_per_table option not supported for temporary tables.
27
+
ERROR HY000: InnoDB: TABLESPACE=innodb_file_per_table option is disallowed for temporary tables with INNODB_STRICT_NODE=ON. This option is deprecated and will be removed in a future release
28
28
SELECT COUNT(*) FROM t1;
29
29
ERROR 42S02: Table 'test.t1' doesn't exist
30
30
"Try creating temporary table with innodb_file_per_table option without STRICT mode"
ALTER TABLE t_my_temp TABLESPACE=innodb_file_per_table;
1370
+
ERROR HY000: InnoDB: TABLESPACE=innodb_file_per_table option is disallowed for temporary tables with INNODB_STRICT_NODE=ON. This option is deprecated and will be removed in a future release
1371
+
ALTER TABLE t_my_temp TABLESPACE=innodb_temporary;
1372
+
Warnings:
1373
+
Warning 1478 InnoDB: TABLESPACE=innodb_temporary option is deprecated and will be removed in a future release.
1374
+
SHOW WARNINGS;
1375
+
Level Code Message
1376
+
Warning 1478 InnoDB: TABLESPACE=innodb_temporary option is deprecated and will be removed in a future release.
0 commit comments