mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 13:02:28 +01:00
Simplified expensive test
This commit is contained in:
parent
cb9591b7de
commit
4b1671c933
2 changed files with 7 additions and 998 deletions
File diff suppressed because it is too large
Load diff
|
@ -206,10 +206,6 @@ select * from t4 where a = 7 and b = 16 order by a;
|
|||
select * from t4 where a = 7 and b = 17 order by a;
|
||||
select * from t4 where a = 7 and b != 16 order by b;
|
||||
|
||||
select x1.a, x1.b from t2 x1, t2 x2 where x1.b = x2.b order by x1.a;
|
||||
select a, b FROM t2 outer_table where
|
||||
a = (select a from t2 where b = outer_table.b ) order by a;
|
||||
|
||||
#
|
||||
# update records
|
||||
#
|
||||
|
@ -225,6 +221,12 @@ while ($1)
|
|||
}
|
||||
enable_query_log;
|
||||
|
||||
delete from t2 where a > 5;
|
||||
select x1.a, x1.b from t2 x1, t2 x2 where x1.b = x2.b order by x1.a;
|
||||
select a, b FROM t2 outer_table where
|
||||
a = (select a from t2 where b = outer_table.b ) order by a;
|
||||
|
||||
|
||||
delete from t2;
|
||||
delete from t3;
|
||||
delete from t4;
|
||||
|
|
Loading…
Reference in a new issue