summaryrefslogtreecommitdiff
path: root/mysql-test/t/3.23/alt000001.test
blob: c6c767b8d5dcaa42e33cf06660a1caf8d52acbad (plain)
1
2
3
4
5
6
use test;
drop table if exists x;
create table x (n int);
insert into x values(9),(3),(12),(10);
alter table x order by n;
@r/3.23/alt000001.result select * from x;