summaryrefslogtreecommitdiff
path: root/mysql-test/r/alter_table.result
diff options
context:
space:
mode:
authorunknown <bar@bar.mysql.r18.ru>2003-04-01 18:54:01 +0500
committerunknown <bar@bar.mysql.r18.ru>2003-04-01 18:54:01 +0500
commit2c7fdb5d20c0385e522ca456ea07494186e9e1a5 (patch)
tree497736f0d47e0951f240511e7e6af21e20619da3 /mysql-test/r/alter_table.result
parentcc2c0b6df36577194da702cd4ed98dc14b377987 (diff)
downloadmariadb-git-2c7fdb5d20c0385e522ca456ea07494186e9e1a5.tar.gz
Some collation have been renamed to fit into convension
Diffstat (limited to 'mysql-test/r/alter_table.result')
-rw-r--r--mysql-test/r/alter_table.result4
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/alter_table.result b/mysql-test/r/alter_table.result
index 456dfa860df..aadb35c32e8 100644
--- a/mysql-test/r/alter_table.result
+++ b/mysql-test/r/alter_table.result
@@ -53,7 +53,7 @@ SHOW FULL COLUMNS FROM t1;
Field Type Collation Null Key Default Extra Privileges Comment
GROUP_ID int(10) unsigned binary PRI 0 select,insert,update,references
LANG_ID smallint(5) unsigned binary PRI 0 select,insert,update,references
-NAME char(80) latin1 MUL select,insert,update,references
+NAME char(80) latin1_swedish_ci MUL select,insert,update,references
DROP TABLE t1;
create table t1 (n int);
insert into t1 values(9),(3),(12),(10);
@@ -120,5 +120,5 @@ alter table t2 rename t1, add c char(10) comment "no comment";
show columns from t1;
Field Type Collation Null Key Default Extra
i int(10) unsigned binary PRI NULL auto_increment
-c char(10) latin1 YES NULL
+c char(10) latin1_swedish_ci YES NULL
drop table t1;