~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/func_like.result

  • Committer: arjen at com
  • Date: 2008-08-25 13:26:34 UTC
  • mto: This revision was merged to the branch mainline in revision 371.
  • Revision ID: arjen@lentz.com.au-20080825132634-yh2563i3xvltoavx
Initial mods for making all tests work again. Some tests adapted+added.
List of tests in Makefile now alphabetically sorted, dups removed.

Show diffs side-by-side

added added

removed removed

Lines of Context:
3
3
insert into t1 values ("a"),("abc"),("abcd"),("hello"),("test");
4
4
explain extended select * from t1 where a like 'abc%';
5
5
id      select_type     table   type    possible_keys   key     key_len ref     rows    filtered        Extra
6
 
1       SIMPLE  t1      index   a       a       13      NULL    5       20.00   Using where; Using index
 
6
1       SIMPLE  t1      index   a       a       13      NULL    5       40.00   Using where; Using index
7
7
Warnings:
8
 
Note    1003    select "test"."t1"."a" AS "a" from "test"."t1" where ("test"."t1"."a" like 'abc%')
 
8
Note    1003    select `test`.`t1`.`a` AS `a` from `test`.`t1` where (`test`.`t1`.`a` like 'abc%')
9
9
explain extended select * from t1 where a like concat('abc','%');
10
10
id      select_type     table   type    possible_keys   key     key_len ref     rows    filtered        Extra
11
 
1       SIMPLE  t1      index   a       a       13      NULL    5       20.00   Using where; Using index
 
11
1       SIMPLE  t1      index   a       a       13      NULL    5       40.00   Using where; Using index
12
12
Warnings:
13
 
Note    1003    select "test"."t1"."a" AS "a" from "test"."t1" where ("test"."t1"."a" like concat('abc','%'))
 
13
Note    1003    select `test`.`t1`.`a` AS `a` from `test`.`t1` where (`test`.`t1`.`a` like concat('abc','%'))
14
14
select * from t1 where a like "abc%";
15
15
a
16
16
abc