~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/t/func_in.test

Phase 1 - temporal changes

Show diffs side-by-side

added added

removed removed

Lines of Context:
393
393
# Bug #31075: crash in get_func_mm_tree
394
394
#
395
395
 
396
 
create table t1 (a time, key(a));
 
396
create table t1 (a datetime, key(a));
397
397
insert into t1 values (),(),(),(),(),(),(),(),(),();
398
398
select a from t1 where a not in (a,a,a) group by a;
399
399
drop table t1;