diff options
author | jimw@mysql.com <> | 2005-07-28 18:22:49 -0700 |
---|---|---|
committer | jimw@mysql.com <> | 2005-07-28 18:22:49 -0700 |
commit | 90924fcb6ae5010b09365abb2e34ee1ac05dcfc2 (patch) | |
tree | 25d339128c266fd163f68ec5c2cb870f4eaf4903 /mysql-test/t/select_safe.test | |
parent | 72a6c71d08bb18a540a3c463a98bfefc44bb8658 (diff) | |
download | mariadb-git-90924fcb6ae5010b09365abb2e34ee1ac05dcfc2.tar.gz |
Fix for handling of unsigned long options on 32-bit platforms that
allowed unintended overflows. (Bug #10351)
Diffstat (limited to 'mysql-test/t/select_safe.test')
-rw-r--r-- | mysql-test/t/select_safe.test | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/mysql-test/t/select_safe.test b/mysql-test/t/select_safe.test index 5b2dfb00bb7..7515ff40ab9 100644 --- a/mysql-test/t/select_safe.test +++ b/mysql-test/t/select_safe.test @@ -56,7 +56,6 @@ SELECT * from t1; # # Test MAX_SEEKS_FOR_KEY # -SELECT @@MAX_SEEKS_FOR_KEY; analyze table t1; insert into t1 values (null,"a"),(null,"a"),(null,"a"),(null,"a"),(null,"a"),(null,"a"),(null,"a"),(null,"a"),(null,"a"),(null,"a"); explain select STRAIGHT_JOIN * from t1,t1 as t2 where t1.b=t2.b; |