Navigation Menu

Skip to content

Commit

Permalink
test: update the expected result
Browse files Browse the repository at this point in the history
  • Loading branch information
kou committed Apr 28, 2014
1 parent 3b2c1db commit d66953f
Showing 1 changed file with 1 addition and 9 deletions.
10 changes: 1 addition & 9 deletions mysql-test/mroonga/wrapper/delete/r/all.result
Expand Up @@ -4,15 +4,7 @@ CREATE TABLE users (
id int PRIMARY KEY,
name varchar(100),
FULLTEXT INDEX (name)
) COMMENT 'engine = "InnoDB"';
SHOW CREATE TABLE users;
Table Create Table
users CREATE TABLE `users` (
`id` int(11) NOT NULL,
`name` varchar(100) DEFAULT NULL,
PRIMARY KEY (`id`),
FULLTEXT KEY `name` (`name`)
) ENGINE=mroonga DEFAULT CHARSET=latin1 COMMENT='engine = "InnoDB"'
) COMMENT 'engine = "InnoDB"' DEFAULT CHARSET=utf8;
INSERT INTO users VALUES (1, 'Alice');
INSERT INTO users VALUES (2, 'Bob');
INSERT INTO users VALUES (3, 'Chris');
Expand Down

0 comments on commit d66953f

Please sign in to comment.