1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

"Collation" has been moved to SHOW FULL FIELDS

SHOW COLLATION columns have been removed:
  D -> Default
  C -> Compiled
  Y -> Yes
This commit is contained in:
unknown
2003-06-02 17:19:06 +05:00
parent 31121b36b6
commit 4beedd513e
11 changed files with 117 additions and 115 deletions

View File

@ -156,9 +156,9 @@ create table t1 (i int unsigned not null auto_increment primary key);
alter table t1 rename t2;
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 NULL PRI NULL auto_increment
c char(10) latin1_swedish_ci YES NULL
Field Type Null Key Default Extra
i int(10) unsigned PRI NULL auto_increment
c char(10) YES NULL
drop table t1;
create table t1 (a int, b int);
insert into t1 values(1,100), (2,100), (3, 100);