diff options
author | unknown <gluh@mysql.com/eagle.(none)> | 2007-10-24 12:49:58 +0500 |
---|---|---|
committer | unknown <gluh@mysql.com/eagle.(none)> | 2007-10-24 12:49:58 +0500 |
commit | f78be6c8e997a2e5c5e971749d35ef4e44e425e2 (patch) | |
tree | 9cd5626804baf3425fce0ae2e0f3f0b70d4b3ed9 | |
parent | b987945db6bcc732cadd615f3335bf848460d1cd (diff) | |
download | mariadb-git-f78be6c8e997a2e5c5e971749d35ef4e44e425e2.tar.gz |
result fix
-rw-r--r-- | mysql-test/r/named_pipe.result | 4 | ||||
-rw-r--r-- | mysql-test/r/shm.result | 4 |
2 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/r/named_pipe.result b/mysql-test/r/named_pipe.result index 588b7570d8f..eb93c5f6344 100644 --- a/mysql-test/r/named_pipe.result +++ b/mysql-test/r/named_pipe.result @@ -605,11 +605,11 @@ id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE t3 ref period period 4 test.t1.period 4181 explain select * from t3 as t1,t3 where t1.period=t3.period order by t3.period limit 10; id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t3 ALL period NULL NULL NULL 41810 Using filesort +1 SIMPLE t3 index period period 4 NULL 1 1 SIMPLE t1 ref period period 4 test.t3.period 4181 explain select * from t3 as t1,t3 where t1.period=t3.period order by t1.period limit 10; id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t1 ALL period NULL NULL NULL 41810 Using filesort +1 SIMPLE t1 index period period 4 NULL 1 1 SIMPLE t3 ref period period 4 test.t1.period 4181 select period from t1; period diff --git a/mysql-test/r/shm.result b/mysql-test/r/shm.result index a99a8b0df5d..b42de1e0f70 100644 --- a/mysql-test/r/shm.result +++ b/mysql-test/r/shm.result @@ -605,11 +605,11 @@ id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE t3 ref period period 4 test.t1.period 4181 explain select * from t3 as t1,t3 where t1.period=t3.period order by t3.period limit 10; id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t3 ALL period NULL NULL NULL 41810 Using filesort +1 SIMPLE t3 index period period 4 NULL 1 1 SIMPLE t1 ref period period 4 test.t3.period 4181 explain select * from t3 as t1,t3 where t1.period=t3.period order by t1.period limit 10; id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t1 ALL period NULL NULL NULL 41810 Using filesort +1 SIMPLE t1 index period period 4 NULL 1 1 SIMPLE t3 ref period period 4 test.t1.period 4181 select period from t1; period |