summaryrefslogtreecommitdiff
path: root/mysql-test/r/func_like.result
diff options
context:
space:
mode:
authormonty@narttu.mysql.fi <>2003-03-17 15:05:04 +0200
committermonty@narttu.mysql.fi <>2003-03-17 15:05:04 +0200
commite7288f279ec0811ebf54f916e226213f28f07624 (patch)
tree7762c42e75102f122a8c9f5423ed0b676d5430a4 /mysql-test/r/func_like.result
parenta434bca70425e4497c8397d073b11be3620be999 (diff)
downloadmariadb-git-e7288f279ec0811ebf54f916e226213f28f07624.tar.gz
After merge fixes
Don't create temporary objects with no table name
Diffstat (limited to 'mysql-test/r/func_like.result')
-rw-r--r--mysql-test/r/func_like.result8
1 files changed, 4 insertions, 4 deletions
diff --git a/mysql-test/r/func_like.result b/mysql-test/r/func_like.result
index f923c16b2ac..f90e694f5f0 100644
--- a/mysql-test/r/func_like.result
+++ b/mysql-test/r/func_like.result
@@ -2,11 +2,11 @@ drop table if exists t1;
create table t1 (a varchar(10), key(a));
insert into t1 values ("a"),("abc"),("abcd"),("hello"),("test");
explain select * from t1 where a like 'abc%';
-table type possible_keys key key_len ref rows Extra
-t1 range a a 11 NULL 1 Using where; Using index
+id select_type table type possible_keys key key_len ref rows Extra
+1 SIMPLE t1 range a a 11 NULL 1 Using where; Using index
explain select * from t1 where a like concat('abc','%');
-table type possible_keys key key_len ref rows Extra
-t1 range a a 11 NULL 1 Using where; Using index
+id select_type table type possible_keys key key_len ref rows Extra
+1 SIMPLE t1 range a a 11 NULL 1 Using where; Using index
select * from t1 where a like "abc%";
a
abc