diff options
author | monty@mashka.mysql.fi <> | 2003-05-21 21:39:58 +0300 |
---|---|---|
committer | monty@mashka.mysql.fi <> | 2003-05-21 21:39:58 +0300 |
commit | 6aa8929cf37374fe74c31eb03007961fa119213a (patch) | |
tree | 3df25ac7036fb4b2e95ab56b9dc90477ec234b7c /mysql-test/r/null_key.result | |
parent | dd2b7918cdd5e0e643cff0305542ccd4aa8f1b6b (diff) | |
download | mariadb-git-6aa8929cf37374fe74c31eb03007961fa119213a.tar.gz |
After merge fixes
Added initialization of all important global variables
Diffstat (limited to 'mysql-test/r/null_key.result')
-rw-r--r-- | mysql-test/r/null_key.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/null_key.result b/mysql-test/r/null_key.result index 3248d359546..c55f29a4e78 100644 --- a/mysql-test/r/null_key.result +++ b/mysql-test/r/null_key.result @@ -84,7 +84,7 @@ id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE t1 range a,b a 5 NULL 5 Using where explain select * from t1 where (a is null or a = 7) and b=7 and c=0; id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t1 range a,b a 5 NULL 12 Using where +1 SIMPLE t1 ALL a,b NULL NULL NULL 12 Using where explain select * from t1 where (a is null and b>a) or a is null and b=7 limit 2; id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE t1 ref a,b a 5 const 3 Using where |