~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/r/bench_count_distinct.result

  • Committer: Brian Aker
  • Date: 2009-02-27 21:38:40 UTC
  • Revision ID: brian@tangent.org-20090227213840-r9hq3sfk8d8qrg72
Code cleanup in signal_handler.cc

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
drop table if exists t1;
2
 
create table t1(n int not null, key(n));
 
2
create table t1(n int not null, key(n)) delay_key_write = 1;
3
3
select count(distinct n) from t1;
4
4
count(distinct n)
5
5
100