Navigation Menu

Skip to content

Commit

Permalink
test: remove needless ENGINE=mroonga
Browse files Browse the repository at this point in the history
In the Mroonga test suite, ENGINE=mroonga is the default.
  • Loading branch information
kou committed Feb 14, 2014
1 parent f606f9f commit d2f2821
Showing 1 changed file with 2 additions and 2 deletions.
Expand Up @@ -24,12 +24,12 @@ DROP TABLE IF EXISTS bugs;

CREATE TABLE tags (
name VARCHAR(64) PRIMARY KEY
) ENGINE=mroonga DEFAULT CHARSET=utf8 COMMENT='default_tokenizer "TokenDelimit"';
) DEFAULT CHARSET=utf8 COMMENT='default_tokenizer "TokenDelimit"';

CREATE TABLE bugs (
id INT UNSIGNED PRIMARY KEY,
tags VARCHAR(40) COMMENT 'type "tags"'
) ENGINE=mroonga DEFAULT CHARSET=utf8;
) DEFAULT CHARSET=utf8;

INSERT INTO tags (name) VALUES ("Groonga");
INSERT INTO bugs (id, tags) VALUES (1, "Groonga Mroonga");
Expand Down

0 comments on commit d2f2821

Please sign in to comment.