diff options
author | unknown <igor@rurik.mysql.com> | 2006-03-31 23:12:05 -0800 |
---|---|---|
committer | unknown <igor@rurik.mysql.com> | 2006-03-31 23:12:05 -0800 |
commit | f0bfea2bb0789bd5bcd2a8d85c42dd310e245d1a (patch) | |
tree | dfcc702a4dc3a52b81c484df46d6ac98b029c7a0 /mysql-test/r/select.result | |
parent | 5ef6e903a462cd2f662d7c7ff9f8993431ec3974 (diff) | |
download | mariadb-git-f0bfea2bb0789bd5bcd2a8d85c42dd310e245d1a.tar.gz |
Added a test case for bug #16504.
Results changed after the bug fix.
Diffstat (limited to 'mysql-test/r/select.result')
-rw-r--r-- | mysql-test/r/select.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/select.result b/mysql-test/r/select.result index 02f27423f99..9b9f67efeb5 100644 --- a/mysql-test/r/select.result +++ b/mysql-test/r/select.result @@ -3388,5 +3388,5 @@ SELECT t2.sku, t2.sppr, t2.name, t1.sku, t1.pr FROM t2, t1 WHERE t2.sku=20 AND (t2.sku=t1.sku OR t2.sppr=t1.sku); id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE t2 const PRIMARY PRIMARY 4 const 1 -1 SIMPLE t1 ALL PRIMARY NULL NULL NULL 6 Using where +1 SIMPLE t1 range PRIMARY PRIMARY 4 NULL 2 Using where DROP TABLE t1,t2; |