mariadb/mysql-test/t/3.23/sel000003.test
unknown 9e853c97de mysql-test-run added gcov support
sel000003.result	BitKeeper file /home/sasha/src/bk/mysql-gcov/mysql-test/r/3.23/sel000003.result
sel000003.test	BitKeeper file /home/sasha/src/bk/mysql-gcov/mysql-test/t/3.23/sel000003.test


mysql-test/mysql-test-run:
  added gcov support
2000-10-11 17:01:58 -06:00

7 lines
No EOL
308 B
Text

use test;
drop table if exists t;
create table t(name char(20) not null primary key,
score smallint not null, key(score));
insert into t values ('Sasha', 20), ('Matt', 20), ('Monty', 10),
('David', 10), ('Tim', 10),('Jeremy', 10);
@r/3.23/sel000003.result select count(*) as n,score from t group by score;