diff options
author | unknown <serg@serg.mylan> | 2004-10-18 15:32:06 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-10-18 15:32:06 +0200 |
commit | bd5bafe1b67f42d3737437a58fe6e67b05c03e3b (patch) | |
tree | 89a7030aa8de1d13f05095bbd5a95621ba7e9c76 /mysql-test/t/range.test | |
parent | a6f61359438a6a6720cd9bce1591aa108a360a1a (diff) | |
download | mariadb-git-bd5bafe1b67f42d3737437a58fe6e67b05c03e3b.tar.gz |
compatibility fix
test results corrected
mysql-test/r/range.result:
test results corrected
mysql-test/t/range.test:
test results corrected
sql/opt_range.cc:
compatibility fix
Diffstat (limited to 'mysql-test/t/range.test')
-rw-r--r-- | mysql-test/t/range.test | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/t/range.test b/mysql-test/t/range.test index 0059cd5bd37..7a86c0cef1d 100644 --- a/mysql-test/t/range.test +++ b/mysql-test/t/range.test @@ -429,6 +429,7 @@ explain select count(*) from t1 where x > -16; # The following result should be (2). To be fixed when we add 'unsigned flag' to # Field::store(longlong) select count(*) from t1 where x > -16; +select * from t1 where x > -16; select count(*) from t1 where x = 18446744073709551601; drop table t1; |