mirror of
https://github.com/MariaDB/server.git
synced 2025-01-17 12:32:27 +01:00
973b281e59
if columns or indexes are modified/renamed/dropped in an ALTER TABLE, stat tables must be updated accordingly (e.g. all statistics for a column should be dropped). But if a stat table doesn't exist, it's not a reason to fail the whole ALTER TABLE operation - such an error should be ignored.
11 lines
353 B
Text
11 lines
353 B
Text
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;
|
|
Table Create Table
|
|
t1 CREATE TABLE `t1` (
|
|
`b` varchar(100) DEFAULT NULL
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1
|
|
alter table mysql.column_stats1 rename to mysql.column_stats;
|
|
drop table t1;
|