diff options
author | monty@mysql.com <> | 2004-03-31 03:32:38 +0300 |
---|---|---|
committer | monty@mysql.com <> | 2004-03-31 03:32:38 +0300 |
commit | ddafa2cc16da61bb8da21338c6f60c629b2e75a1 (patch) | |
tree | 0404bd0f500145286f101ddeb518678df83896d7 /mysql-test/r/heap_btree.result | |
parent | fede76ddf28b68d9121d392e0139b3f63352c802 (diff) | |
download | mariadb-git-ddafa2cc16da61bb8da21338c6f60c629b2e75a1.tar.gz |
simple optimzation
Portability fixes
Diffstat (limited to 'mysql-test/r/heap_btree.result')
-rw-r--r-- | mysql-test/r/heap_btree.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/heap_btree.result b/mysql-test/r/heap_btree.result index f92a8653a69..5c60c97d674 100644 --- a/mysql-test/r/heap_btree.result +++ b/mysql-test/r/heap_btree.result @@ -178,7 +178,7 @@ id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE t1 range btn btn 10 NULL 1 Using where explain select * from t1 where btn like "h%"; id select_type table type possible_keys key key_len ref rows Extra -1 SIMPLE t1 range btn btn 10 NULL 4 Using where +1 SIMPLE t1 range btn btn 10 NULL # Using where explain select * from t1 where btn like "a%"; id select_type table type possible_keys key key_len ref rows Extra 1 SIMPLE t1 range btn btn 10 NULL 1 Using where |