diff options
author | unknown <serg@serg.mylan> | 2004-06-26 14:21:32 +0200 |
---|---|---|
committer | unknown <serg@serg.mylan> | 2004-06-26 14:21:32 +0200 |
commit | 7eb1afabea183c2b8a2cc50af659f16d8092b069 (patch) | |
tree | b347e9d8239a7545f7e1124189aa2de1238fbcb0 /mysql-test/r/range.result | |
parent | dbdca40549f9237893dfb872402a9e7f57084ef0 (diff) | |
download | mariadb-git-7eb1afabea183c2b8a2cc50af659f16d8092b069.tar.gz |
after merge fixed
mysql-test/r/flush_table.result:
after merge fixed
duplicated tests removed
mysql-test/t/flush_table.test:
after merge fixed
duplicated tests removed
sql/sql_yacc.yy:
alias is not db-qualified
Diffstat (limited to 'mysql-test/r/range.result')
-rw-r--r-- | mysql-test/r/range.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/range.result b/mysql-test/r/range.result index 2f98b05779e..6df76da91d8 100644 --- a/mysql-test/r/range.result +++ b/mysql-test/r/range.result @@ -244,7 +244,7 @@ id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE t2 range x x 5 NULL 2 Using where explain select count(*) from t1 where x in (1); id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t1 ref x x 5 NULL 1 Using where; Using index +1 SIMPLE t1 ref x x 5 const 1 Using where; Using index explain select count(*) from t1 where x in (1,2); id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE t1 range x x 5 NULL 2 Using where; Using index |