1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

MDEV-25654 only force HA_KEY_ALG_HASH for fast alter partition

not for any ALTER TABLE without ALTER_CHANGE_COLUMN.

This fixes galera_sr.MDEV-28971 test

followup for 0dcd30197a
This commit is contained in:
Sergei Golubchik
2025-01-18 15:11:12 +01:00
parent b1f57a98a8
commit 782c4b94f0
4 changed files with 21 additions and 16 deletions

View File

@@ -721,4 +721,9 @@ alter table t1 force;
drop table t1;
--echo # veirfy that duplicate has unique is detected
create table t1 (a blob unique);
alter table t1 add constraint constraint_1 unique (a);
drop table t1;
--echo # End of 10.5 tests