mirror of
https://github.com/MariaDB/server.git
synced 2025-11-27 05:41:41 +03:00
Allow combination of non-instant, non-rebuilding operations with changes of table options that do not require a rebuild. For example, DROP INDEX or ADD INDEX can be performed with ALGORITHM=NOCOPY together with changing such table options. Changing the table options alone would be allowed with ALGORITHM=INSTANT. INNOBASE_ALTER_NOCREATE: A new set of flags, for operations that are refused for ALGORITHM=INSTANT and do not involve creating index trees. Move ALTER_RENAME_INDEX to the proper place (INNOBASE_ALTER_INSTANT). innobase_need_rebuild(): Do not require a rebuild if INNOBASE_ALTER_NOREBUILD operations are combined with ALTER_OPTIONS. ha_innobase::prepare_inplace_alter_table(), ha_innobase::inplace_alter_table(): Use the fast path if ALTER_OPTIONS is combined with INNOBASE_ALTER_NOCREATE. In this case, the actual changes would be deferred to ha_innobase::commit_inplace_alter_table().
93 lines
2.9 KiB
Plaintext
93 lines
2.9 KiB
Plaintext
--- alter_algorithm.result
|
|
+++ alter_algorithm.reject
|
|
@@ -7,44 +7,35 @@
|
|
INSERT INTO t1(f1, f2, f3) VALUES(1, 1, 1);
|
|
SELECT @@alter_algorithm;
|
|
@@alter_algorithm
|
|
-COPY
|
|
+NOCOPY
|
|
# All the following cases needs table rebuild
|
|
# Add and Drop primary key
|
|
ALTER TABLE t1 ADD COLUMN col1 INT NOT NULL,DROP PRIMARY KEY,ADD PRIMARY KEY(col1);
|
|
-affected rows: 1
|
|
-info: Records: 1 Duplicates: 0 Warnings: 0
|
|
+Got one of the listed errors
|
|
# Make existing column NULLABLE
|
|
ALTER TABLE t1 MODIFY f2 INT;
|
|
-affected rows: 1
|
|
-info: Records: 1 Duplicates: 0 Warnings: 0
|
|
+Got one of the listed errors
|
|
# Make existing column NON-NULLABLE
|
|
ALTER TABLE t1 MODIFY f3 INT NOT NULL;
|
|
-affected rows: 1
|
|
-info: Records: 1 Duplicates: 0 Warnings: 0
|
|
+Got one of the listed errors
|
|
# Drop Stored Column
|
|
ALTER TABLE t1 DROP COLUMN f5;
|
|
-affected rows: 1
|
|
-info: Records: 1 Duplicates: 0 Warnings: 0
|
|
+Got one of the listed errors
|
|
# Add base non-generated column as a last column in the compressed table
|
|
ALTER TABLE t1 ADD COLUMN f6 INT NOT NULL;
|
|
-affected rows: 1
|
|
-info: Records: 1 Duplicates: 0 Warnings: 0
|
|
+Got one of the listed errors
|
|
# Add base non-generated column but not in the last position
|
|
ALTER TABLE t1 ADD COLUMN f7 INT NOT NULL after f3;
|
|
-affected rows: 1
|
|
-info: Records: 1 Duplicates: 0 Warnings: 0
|
|
+Got one of the listed errors
|
|
# Force the table to rebuild
|
|
ALTER TABLE t1 FORCE;
|
|
-affected rows: 1
|
|
-info: Records: 1 Duplicates: 0 Warnings: 0
|
|
+Got one of the listed errors
|
|
# Row format changes
|
|
ALTER TABLE t1 ROW_FORMAT=COMPRESSED;
|
|
-affected rows: 1
|
|
-info: Records: 1 Duplicates: 0 Warnings: 0
|
|
+Got one of the listed errors
|
|
# Engine table
|
|
ALTER TABLE t1 ENGINE=INNODB;
|
|
-affected rows: 1
|
|
-info: Records: 1 Duplicates: 0 Warnings: 0
|
|
+Got one of the listed errors
|
|
DROP TABLE t1;
|
|
affected rows: 0
|
|
CREATE TABLE t1(f1 INT PRIMARY KEY, f2 INT NOT NULL,
|
|
@@ -58,23 +49,23 @@
|
|
INSERT INTO t1(f1, f2, f4, f5) VALUES(1, 2, 3, 4);
|
|
SELECT @@alter_algorithm;
|
|
@@alter_algorithm
|
|
-COPY
|
|
+NOCOPY
|
|
ALTER TABLE t1 ADD INDEX idx1(f4), page_compressed=1;
|
|
-affected rows: 1
|
|
-info: Records: 1 Duplicates: 0 Warnings: 0
|
|
+affected rows: 0
|
|
+info: Records: 0 Duplicates: 0 Warnings: 0
|
|
ALTER TABLE t1 DROP INDEX idx, page_compression_level=5;
|
|
-affected rows: 1
|
|
-info: Records: 1 Duplicates: 0 Warnings: 0
|
|
+affected rows: 0
|
|
+info: Records: 0 Duplicates: 0 Warnings: 0
|
|
ALTER TABLE t1 ADD UNIQUE INDEX u1(f2);
|
|
-affected rows: 1
|
|
-info: Records: 1 Duplicates: 0 Warnings: 0
|
|
+affected rows: 0
|
|
+info: Records: 0 Duplicates: 0 Warnings: 0
|
|
ALTER TABLE t1 DROP INDEX f4, page_compression_level=9;
|
|
-affected rows: 1
|
|
-info: Records: 1 Duplicates: 0 Warnings: 0
|
|
+affected rows: 0
|
|
+info: Records: 0 Duplicates: 0 Warnings: 0
|
|
SET foreign_key_checks = 0;
|
|
affected rows: 0
|
|
ALTER TABLE t1 ADD FOREIGN KEY(f5) REFERENCES t2(f1);
|
|
-affected rows: 1
|
|
-info: Records: 1 Duplicates: 0 Warnings: 0
|
|
+affected rows: 0
|
|
+info: Records: 0 Duplicates: 0 Warnings: 0
|
|
DROP TABLE t2, t1;
|
|
affected rows: 0
|