1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

Merge updates.

This commit is contained in:
cmiller@zippy.cornsilk.net
2006-08-10 12:39:18 -04:00
parent 364dfae629
commit f6f7eb851e
6 changed files with 26 additions and 75 deletions

View File

@ -248,34 +248,34 @@ a
DROP TABLE t1;
create table t1(a int not null, key using btree(a)) engine=heap;
insert into t1 values (2), (2), (2), (1), (1), (3), (3), (3), (3);
select a from t1 where a > 2;
select a from t1 where a > 2 order by a;
a
3
3
3
3
delete from t1 where a < 4;
select a from t1;
select a from t1 order by a;
a
insert into t1 values (2), (2), (2), (1), (1), (3), (3), (3), (3);
select a from t1 where a > 4;
select a from t1 where a > 4 order by a;
a
delete from t1 where a > 4;
select a from t1;
select a from t1 order by a;
a
3
3
1
3
3
1
2
2
2
select a from t1 where a > 3;
3
3
3
3
select a from t1 where a > 3 order by a;
a
delete from t1 where a >= 2;
select a from t1;
select a from t1 order by a;
a
1
1