~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/func_group.result

Moved coercibility into a plugin.

Show diffs side-by-side

added added

removed removed

Lines of Context:
581
581
1       SIMPLE  t2      index   k2      PRIMARY 14      NULL    7       Using where
582
582
1       SIMPLE  t1      index   NULL    PRIMARY 14      NULL    15      Using index; Using join buffer
583
583
drop table t1, t2;
584
 
create table t1 (a char(10));
585
 
insert into t1 values ('a'),('b'),('c');
586
 
select coercibility(max(a)) from t1;
587
 
coercibility(max(a))
588
 
2
589
 
drop table t1;
590
584
create table t1 (a char);
591
585
insert into t1 values ('a'),('b');
592
586
show create table t1;