2019-06-06 17:10:57 +02:00
|
|
|
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);
|
2023-09-24 14:40:29 +03:00
|
|
|
Warnings:
|
|
|
|
Warning 1177 Got error 1146 when trying to open statistics table `table_stats` for updating statistics
|
|
|
|
Warning 1177 Got error 1146 when trying to open statistics table `table_stats` for updating statistics
|
2019-06-06 17:10:57 +02:00
|
|
|
show create table t1;
|
|
|
|
Table Create Table
|
|
|
|
t1 CREATE TABLE `t1` (
|
|
|
|
`b` varchar(100) DEFAULT NULL
|
2022-09-13 16:36:38 +03:00
|
|
|
) ENGINE=MyISAM DEFAULT CHARSET=latin1 COLLATE=latin1_swedish_ci
|
2019-06-06 17:10:57 +02:00
|
|
|
alter table mysql.column_stats1 rename to mysql.column_stats;
|
|
|
|
drop table t1;
|