mirror of
https://github.com/MariaDB/server.git
synced 2025-01-27 09:14:17 +01:00
c236f69d95
ignore_indexes -> ignored_index ignore_indexes_innodb -> ignored_index_innodb
16 lines
376 B
Text
16 lines
376 B
Text
--source include/have_innodb.inc
|
|
|
|
#
|
|
# Check if marking index as [not] ignored is an instant operation with InnoDB
|
|
#
|
|
create table t1 (a int, b int, key a1(a)) engine=innodb;
|
|
insert into t1 values (1,1),(2,2),(3,3);
|
|
|
|
set alter_algorithm='instant';
|
|
alter table t1 alter index a1 ignored;
|
|
|
|
alter table t1 alter index a1 not ignored;
|
|
|
|
set alter_algorithm=default;
|
|
drop table t1;
|
|
|