summaryrefslogtreecommitdiff
path: root/mysql-test/r/null_key.result
diff options
context:
space:
mode:
authormonty@mashka.mysql.fi <>2003-05-21 21:39:58 +0300
committermonty@mashka.mysql.fi <>2003-05-21 21:39:58 +0300
commit6aa8929cf37374fe74c31eb03007961fa119213a (patch)
tree3df25ac7036fb4b2e95ab56b9dc90477ec234b7c /mysql-test/r/null_key.result
parentdd2b7918cdd5e0e643cff0305542ccd4aa8f1b6b (diff)
downloadmariadb-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.result2
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