1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00

ALTER TABLE t1 CONVERT TO should also change the default character set.

Forgot to do it in the previous commit.
This commit is contained in:
bar@bar.intranet.mysql.r18.ru
2004-03-30 22:18:49 +05:00
parent dba73e1c86
commit b92dd45da4
3 changed files with 8 additions and 4 deletions

View File

@ -360,7 +360,7 @@ Table Create Table
t1 CREATE TABLE `t1` (
`a` char(10) character set koi8r default NULL
) ENGINE=MyISAM DEFAULT CHARSET=latin1
alter table t1 CONVERT TO CHARACTER SET latin1, DEFAULT CHARACTER SET latin1;
alter table t1 CONVERT TO CHARACTER SET latin1;
show create table t1;
Table Create Table
t1 CREATE TABLE `t1` (