mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Merge 10.3 into 10.4
In main.index_merge_myisam we remove the test that was added in commita2d24def8c
because it duplicates the test case that was added in commit5af12e4635
.
This commit is contained in:
@ -581,3 +581,15 @@ alter table t
|
||||
change column b b int without system versioning;
|
||||
|
||||
drop table t;
|
||||
|
||||
--echo #
|
||||
--echo # MDEV-21688 Assertion or ER_WARN_DATA_OUT_OF_RANGE upon ALTER on previously versioned table
|
||||
--echo #
|
||||
create or replace table t1 (a int) with system versioning;
|
||||
insert into t1 values (128);
|
||||
delete from t1;
|
||||
set statement system_versioning_alter_history=keep for
|
||||
alter table t1 drop system versioning, modify column a tinyint;
|
||||
|
||||
# cleanup
|
||||
drop table t1;
|
||||
|
Reference in New Issue
Block a user