1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

Added test for fix of bug#5072

This commit is contained in:
unknown
2004-08-20 14:44:35 +02:00
parent 6527c6fee7
commit e9348acfdb
2 changed files with 43 additions and 0 deletions

View File

@@ -203,6 +203,14 @@ where c >= 100;
commit;
select * from t1 where c >= 100 order by a;
# alter table
select * from t1 order by a;
alter table t1 add x int;
select * from t1 order by a;
alter table t1 drop x;
select * from t1 order by a;
# range scan delete
delete from t1 where c >= 100;
commit;