summaryrefslogtreecommitdiff
path: root/storage/mroonga/mysql-test/mroonga/wrapper/r/count_star.result
blob: 7822d118733a41a4f20b2c89d1c213b55e09b770 (plain)
1
2
3
4
5
6
7
8
9
10
11
DROP TABLE IF EXISTS ids;
CREATE TABLE ids (
id int PRIMARY KEY
) COMMENT='ENGINE "InnoDB"';
INSERT INTO ids VALUES (1);
INSERT INTO ids VALUES (2);
INSERT INTO ids VALUES (3);
SELECT COUNT(*) FROM ids;
COUNT(*)
3
DROP TABLE ids;