diff options
Diffstat (limited to 'mysql-test/suite/pbxt/r/null.result')
-rw-r--r-- | mysql-test/suite/pbxt/r/null.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/suite/pbxt/r/null.result b/mysql-test/suite/pbxt/r/null.result index b05a58b9494..4a02d85bf75 100644 --- a/mysql-test/suite/pbxt/r/null.result +++ b/mysql-test/suite/pbxt/r/null.result @@ -170,7 +170,7 @@ insert into t1 select i*2 from t1; insert into t1 values(null); explain select * from t1 where i=2 or i is null; id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t1 ref_or_null i i 5 const # Using index +1 SIMPLE t1 ref_or_null i i 5 const # Using where; Using index select count(*) from t1 where i=2 or i is null; count(*) 10 |