From 3f619478f796eddbba6e39502fe941b285dd97b1 Mon Sep 17 00:00:00 2001 From: Daniel Baumann Date: Sat, 4 May 2024 20:00:34 +0200 Subject: Adding upstream version 1:10.11.6. Signed-off-by: Daniel Baumann --- mysql-test/main/stat_tables_missing.test | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 mysql-test/main/stat_tables_missing.test (limited to 'mysql-test/main/stat_tables_missing.test') diff --git a/mysql-test/main/stat_tables_missing.test b/mysql-test/main/stat_tables_missing.test new file mode 100644 index 00000000..63ee9d5d --- /dev/null +++ b/mysql-test/main/stat_tables_missing.test @@ -0,0 +1,10 @@ +# +# MDEV-18788 Live upgrade from MySQL 5.6/5.7 to MariaDB 10.4 fails with "Event Scheduler: An error occurred when initializing system tables" +# +create table t1 (a int); +alter table mysql.column_stats rename to mysql.column_stats1; +flush tables; +alter table t1 change a b varchar(100); +show create table t1; +alter table mysql.column_stats1 rename to mysql.column_stats; +drop table t1; -- cgit v1.2.3