~drizzle-trunk/drizzle/development

1 by brian
clean slate
1
DROP TABLE IF EXISTS t1, t2;
396 by Brian Aker
Cleanup tiny and small int.
2
CREATE TABLE t1 (id INTEGER, grp int, id_rev INTEGER);
1 by brian
clean slate
3
SELECT COUNT(*) FROM t1;
4
COUNT(*)
590.1.6 by Stewart Smith
reduce data used in count_distinct3 to make test 60 times faster to run.
5
13000
1 by brian
clean slate
6
SELECT COUNT(DISTINCT id) FROM t1 GROUP BY grp;
7
DROP TABLE t1;
8
set @@read_buffer_size=default;