diff options
author | monty@mysql.com <> | 2004-10-07 10:50:13 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2004-10-07 10:50:13 +0300 |
commit | 6239edc1d189968aad442943fc44fcd09f44888f (patch) | |
tree | 2ca781cd075a86d68ada5b4565202c8f62a8d84a /mysql-test/t/range.test | |
parent | 62f3cd6a31d3c1ffe7ad17d9de862a3c0859f56a (diff) | |
download | mariadb-git-6239edc1d189968aad442943fc44fcd09f44888f.tar.gz |
After merge fixes
Some bigger code changes was necessary becasue of the multi-table-update and the new HANDLER code
Diffstat (limited to 'mysql-test/t/range.test')
-rw-r--r-- | mysql-test/t/range.test | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/mysql-test/t/range.test b/mysql-test/t/range.test index 61886221fcf..cd6620f7126 100644 --- a/mysql-test/t/range.test +++ b/mysql-test/t/range.test @@ -423,6 +423,9 @@ select count(*) from t1 where x=0; select count(*) from t1 where x<0; select count(*) from t1 where x < -16; select count(*) from t1 where x = -16; +# The following query returns wrong value because the range optimizer can't +# handle search on a signed value for an unsigned parameter. This will be fixed in +# 5.0 select count(*) from t1 where x > -16; select count(*) from t1 where x = 18446744073709551601; |