Merge 10.4 into 10.5

This commit is contained in:
Marko Mäkelä 2022-12-13 14:39:18 +02:00
commit 1dc2f35598
179 changed files with 1889 additions and 475 deletions

View file

@ -203,6 +203,16 @@ delete from t order by b limit 1;
# cleanup
drop table t;
--echo #
--echo # MDEV-30112 ASAN errors in Item_ident::print / generate_partition_syntax
--echo #
create table t (a int) partition by hash(a);
--error ER_BAD_FIELD_ERROR
alter table t change a b int, drop a;
show create table t;
# Cleanup
drop table t;
--echo # End of 10.3 tests
--echo #