1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

Rename IGNORED INDEX tests to match the SQL syntax

ignore_indexes -> ignored_index
ignore_indexes_innodb -> ignored_index_innodb
This commit is contained in:
Sergei Petrunia
2021-03-16 20:57:36 +03:00
parent 707101d377
commit c236f69d95
4 changed files with 0 additions and 0 deletions

View File

@ -0,0 +1,16 @@
--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;