@@ -22,6 +22,8 @@ SUBPARTITION subpart24),
2222PARTITION thousands VALUES LESS THAN (10000)
2323(SUBPARTITION subpart31,
2424SUBPARTITION subpart32));
25+ Warnings:
26+ Warning 1681 'InnoDB : A table partition in a shared tablespace' is deprecated and will be removed in a future release.
2527SET GLOBAL innodb_file_per_table = ON;
2628CREATE TABLE t2 (a INT, b INT)
2729ENGINE = InnoDB
@@ -35,11 +37,15 @@ SUBPARTITION subpart22 TABLESPACE=`s``1`),
3537PARTITION thousands VALUES LESS THAN (10000)
3638(SUBPARTITION subpart31 DATA DIRECTORY 'MYSQL_TMP_DIR',
3739SUBPARTITION subpart32 DATA DIRECTORY 'MYSQL_TMP_DIR' TABLESPACE `innodb_file_per_table`));
40+ Warnings:
41+ Warning 1681 'InnoDB : A table partition in a shared tablespace' is deprecated and will be removed in a future release.
3842ALTER TABLE t1 ALGORITHM=COPY, ADD PARTITION
3943(PARTITION tenthousands VALUES LESS THAN (20000));
4044ERROR 0A000: ALGORITHM=COPY/INPLACE is not supported. Reason: Partition specific operations do not yet support LOCK/ALGORITHM. Try ALGORITHM=DEFAULT.
4145ALTER TABLE t1 ALGORITHM=DEFAULT, ADD PARTITION
4246(PARTITION tenthousands VALUES LESS THAN (20000));
47+ Warnings:
48+ Warning 1681 'InnoDB : A table partition in a shared tablespace' is deprecated and will be removed in a future release.
4349# Only allow tablespace name as ident, not text. I.e. no 'single' quotes.
4450ALTER TABLE t1 ALGORITHM=COPY, ADD PARTITION
4551(PARTITION twentythousands VALUES LESS THAN (30000)
@@ -60,6 +66,8 @@ ERROR 42000: You have an error in your SQL syntax; check the manual that corresp
6066ALTER TABLE t1 ALGORITHM=DEFAULT, ADD PARTITION
6167(PARTITION twentythousands VALUES LESS THAN (30000)
6268TABLESPACE = "innodb_system");
69+ Warnings:
70+ Warning 1681 'InnoDB : A table partition in a shared tablespace' is deprecated and will be removed in a future release.
6371ALTER TABLE t1 ALGORITHM=DEFAULT, ADD PARTITION
6472(PARTITION thirtythousands VALUES LESS THAN (40000)
6573TABLESPACE = `innodb_file_per_table`);
@@ -99,9 +107,13 @@ SUBPARTITION p40k_2 TABLESPACE = innodb_file_per_table DATA DIRECTORY = 'MYSQL_T
99107SET GLOBAL innodb_file_per_table = OFF;
100108ALTER TABLE t1 ALGORITHM=DEFAULT, ADD PARTITION
101109(PARTITION fiftythousands VALUES LESS THAN (60000));
110+ Warnings:
111+ Warning 1681 'InnoDB : A table partition in a shared tablespace' is deprecated and will be removed in a future release.
102112ALTER TABLE t1 ALGORITHM=DEFAULT, ADD PARTITION
103113(PARTITION sixtythousands VALUES LESS THAN (70000)
104114TABLESPACE = `innodb_system`);
115+ Warnings:
116+ Warning 1681 'InnoDB : A table partition in a shared tablespace' is deprecated and will be removed in a future release.
105117ALTER TABLE t1 ALGORITHM=DEFAULT, ADD PARTITION
106118(PARTITION seventythousands VALUES LESS THAN (80000)
107119TABLESPACE = `innodb_file_per_table`);
@@ -121,6 +133,8 @@ ALTER TABLE t1 ALGORITHM=DEFAULT, ADD PARTITION
121133(PARTITION ninetythousands VALUES LESS THAN (100000)
122134(SUBPARTITION p90k_1 TABLESPACE = `innodb_file_per_table`,
123135SUBPARTITION p90k_2 TABLESPACE = `innodb_system`));
136+ Warnings:
137+ Warning 1681 'InnoDB : A table partition in a shared tablespace' is deprecated and will be removed in a future release.
124138FLUSH TABLES;
125139=== information_schema.innodb_sys_tables and innodb_sys_tablespaces ===
126140Table Name Tablespace Table Flags Columns Row Format Zip Size Space Type
@@ -388,6 +402,8 @@ SUBPARTITION seventythousandssp1 ENGINE = InnoDB),
388402PARTITION ninetythousands VALUES LESS THAN (100000)
389403(SUBPARTITION p90k_1 ENGINE = InnoDB,
390404SUBPARTITION p90k_2 TABLESPACE = innodb_system ENGINE = InnoDB)) */;
405+ Warnings:
406+ Warning 1681 'InnoDB : A table partition in a shared tablespace' is deprecated and will be removed in a future release.
391407CREATE TABLE `t2` (
392408`a` int(11) DEFAULT NULL,
393409`b` int(11) DEFAULT NULL
@@ -403,6 +419,8 @@ SUBPARTITION subpart22 TABLESPACE = `s``1` ENGINE = InnoDB),
403419PARTITION thousands VALUES LESS THAN (10000)
404420(SUBPARTITION subpart31 ENGINE = InnoDB,
405421SUBPARTITION subpart32 ENGINE = InnoDB)) */;
422+ Warnings:
423+ Warning 1681 'InnoDB : A table partition in a shared tablespace' is deprecated and will be removed in a future release.
406424=== information_schema.innodb_sys_tables and innodb_sys_tablespaces ===
407425Table Name Tablespace Table Flags Columns Row Format Zip Size Space Type
408426test/t1#p#fiftythousands#sp#fiftythousandssp0 s1 161 5 Dynamic 0 General
@@ -531,6 +549,8 @@ CREATE TABLE ti
531549ENGINE=INNODB
532550PARTITION BY HASH( MONTH(tr_date) )
533551PARTITIONS 6;
552+ Warnings:
553+ Warning 1681 'InnoDB : A table partition in a shared tablespace' is deprecated and will be removed in a future release.
534554DROP TABLE t1,ti;
535555DROP TABLESPACE ts1;
536556#
0 commit comments