mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 03:51:50 +01:00
8 lines
177 B
Text
8 lines
177 B
Text
|
drop table if exists t1;
|
||
|
create table t1 (c char(10), index(c)) charset macce engine=ibmdb2i;
|
||
|
insert into t1 values ("test");
|
||
|
select * from t1 order by c;
|
||
|
c
|
||
|
test
|
||
|
drop table t1;
|