~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
drop table if exists t1;
1117.1.1 by Brian Aker
Remove SQL level reference for DELAY (just now done correctly by default in
2
create table t1(n int not null, key(n));
1 by brian
clean slate
3
select count(distinct n) from t1;
4
count(distinct n)
5
100
6
explain extended select count(distinct n) from t1;
7
id	select_type	table	type	possible_keys	key	key_len	ref	rows	filtered	Extra
8
1	SIMPLE	t1	index	NULL	n	4	NULL	200	100.00	Using index
9
Warnings:
370.1.1 by arjen at com
Initial mods for making all tests work again. Some tests adapted+added.
10
Note	1003	select count(distinct `test`.`t1`.`n`) AS `count(distinct n)` from `test`.`t1`
1 by brian
clean slate
11
drop table t1;