mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
Merge updates.
This commit is contained in:
@@ -170,16 +170,16 @@ 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;
|
||||
delete from t1 where a < 4;
|
||||
select a from t1;
|
||||
select a from t1 order by 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;
|
||||
delete from t1 where a > 4;
|
||||
select a from t1;
|
||||
select a from t1 where a > 3;
|
||||
select a from t1 order by a;
|
||||
select a from t1 where a > 3 order by a;
|
||||
delete from t1 where a >= 2;
|
||||
select a from t1;
|
||||
select a from t1 order by a;
|
||||
drop table t1;
|
||||
|
||||
--echo End of 4.1 tests
|
||||
|
||||
Reference in New Issue
Block a user