diff options
author | Michael Widenius <monty@askmonty.org> | 2011-01-13 02:59:11 +0200 |
---|---|---|
committer | Michael Widenius <monty@askmonty.org> | 2011-01-13 02:59:11 +0200 |
commit | bda130e6b3ddc45218e4ed1b81cb03a213e5e00c (patch) | |
tree | ba5162d1169933a90ff41e9410b3e2a0e5713913 /mysql-test/suite/handler/handler.inc | |
parent | 162dd48fc4d4fce7a0832bc764402f3677abfc10 (diff) | |
download | mariadb-git-bda130e6b3ddc45218e4ed1b81cb03a213e5e00c.tar.gz |
Updated test results for 5.3
Changed handler.inc to make test row order independent
mysql-test/r/table_elim.result:
Updated test results for 5.3
mysql-test/suite/handler/aria.result:
Updated result
mysql-test/suite/handler/handler.inc:
Changed handler.inc to make test row order independent
mysql-test/suite/handler/heap.result:
Updated result
mysql-test/suite/handler/innodb.result:
Updated result
mysql-test/suite/handler/myisam.result:
Updated result
Diffstat (limited to 'mysql-test/suite/handler/handler.inc')
-rw-r--r-- | mysql-test/suite/handler/handler.inc | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/mysql-test/suite/handler/handler.inc b/mysql-test/suite/handler/handler.inc index 0d5f1a1e546..d0ae6164079 100644 --- a/mysql-test/suite/handler/handler.inc +++ b/mysql-test/suite/handler/handler.inc @@ -40,7 +40,7 @@ handler t2 read b next; handler t2 read b next; handler t2 read a=(15); -handler t2 read a=(16); +handler t2 read a=(21); --error 1070 handler t2 read a=(19,"fff"); @@ -66,9 +66,9 @@ handler t2 read b<(18); --sorted_result handler t2 read a=(15); --sorted_result -handler t2 read a>=(15); +handler t2 read a>=(15) limit 2; --sorted_result -handler t2 read a>(15); +handler t2 read a>(15) limit 2; handler t2 read a<=(15); handler t2 read a<(15); @@ -90,11 +90,11 @@ handler t2 read b first limit 5; handler t2 read b next limit 3; handler t2 read b prev limit 10; -handler t2 read a>=(16) limit 4; -handler t2 read a>=(16) limit 2,2; -select * from t1 where a>=16 limit 2,2; +handler t2 read b>=(16) limit 4; +handler t2 read b>=(16) limit 2,2; +select * from t1 where a>=16 order by a,b limit 2,2; handler t2 read a last limit 3; -handler t2 read a=(16) limit 1,3; +handler t2 read b=(16) limit 1,3; handler t2 read b=(19); handler t2 read b=(19) where b="yyy"; @@ -104,8 +104,8 @@ handler t2 read next; handler t2 close; handler t1 open; -handler t1 read a next; # this used to crash as a bug#5373 -handler t1 read a next; +handler t1 read b next; # this used to crash as a bug#5373 +handler t1 read b next; handler t1 close; handler t1 open; |