[Groonga-mysql-commit] mroonga/mroonga at 95fc291 [master] test: remove needless check

Back to archive index

Kouhei Sutou null+****@clear*****
Wed Aug 24 15:50:41 JST 2016


Kouhei Sutou	2016-08-24 15:50:41 +0900 (Wed, 24 Aug 2016)

  New Revision: 95fc291c02eb39af622bda68035f09be2a233ecd
  https://github.com/mroonga/mroonga/commit/95fc291c02eb39af622bda68035f09be2a233ecd

  Message:
    test: remove needless check

  Modified files:
    mysql-test/mroonga/storage/alter_table/r/recreate_anonymous_index_at_once.result
    mysql-test/mroonga/storage/alter_table/t/recreate_anonymous_index_at_once.test

  Modified: mysql-test/mroonga/storage/alter_table/r/recreate_anonymous_index_at_once.result (+0 -18)
===================================================================
--- mysql-test/mroonga/storage/alter_table/r/recreate_anonymous_index_at_once.result    2016-08-24 15:47:02 +0900 (64f524d)
+++ mysql-test/mroonga/storage/alter_table/r/recreate_anonymous_index_at_once.result    2016-08-24 15:50:41 +0900 (6ee8f8b)
@@ -5,15 +5,6 @@ title TEXT,
 body TEXT,
 FULLTEXT INDEX (body)
 ) DEFAULT CHARSET UTF8;
-SHOW CREATE TABLE diaries;
-Table	Create Table
-diaries	CREATE TABLE `diaries` (
-  `id` int(11) NOT NULL AUTO_INCREMENT,
-  `title` text,
-  `body` text,
-  PRIMARY KEY (`id`),
-  FULLTEXT KEY `body` (`body`)
-) ENGINE=Mroonga DEFAULT CHARSET=utf8
 INSERT INTO diaries (title, body) VALUES ("survey", "will start groonga!");
 INSERT INTO diaries (title, body) VALUES ("survey", "will start mroonga!");
 SELECT * FROM diaries;
@@ -35,13 +26,4 @@ SELECT * FROM diaries
 WHERE MATCH (body) AGAINST ("+groonga" IN BOOLEAN MODE);
 id	title	body
 1	survey	will start groonga!
-SHOW CREATE TABLE diaries;
-Table	Create Table
-diaries	CREATE TABLE `diaries` (
-  `id` int(11) NOT NULL AUTO_INCREMENT,
-  `title` text,
-  `body` text,
-  PRIMARY KEY (`id`),
-  FULLTEXT KEY `body` (`body`)
-) ENGINE=Mroonga AUTO_INCREMENT=3 DEFAULT CHARSET=utf8
 DROP TABLE diaries;

  Modified: mysql-test/mroonga/storage/alter_table/t/recreate_anonymous_index_at_once.test (+0 -3)
===================================================================
--- mysql-test/mroonga/storage/alter_table/t/recreate_anonymous_index_at_once.test    2016-08-24 15:47:02 +0900 (741308d)
+++ mysql-test/mroonga/storage/alter_table/t/recreate_anonymous_index_at_once.test    2016-08-24 15:50:41 +0900 (a72d08e)
@@ -27,7 +27,6 @@ CREATE TABLE diaries (
   body TEXT,
   FULLTEXT INDEX (body)
 ) DEFAULT CHARSET UTF8;
-SHOW CREATE TABLE diaries;
 
 INSERT INTO diaries (title, body) VALUES ("survey", "will start groonga!");
 INSERT INTO diaries (title, body) VALUES ("survey", "will start mroonga!");
@@ -44,8 +43,6 @@ SELECT * FROM diaries;
 SELECT * FROM diaries
   WHERE MATCH (body) AGAINST ("+groonga" IN BOOLEAN MODE);
 
-SHOW CREATE TABLE diaries;
-
 DROP TABLE diaries;
 
 --source ../../../include/mroonga/have_mroonga_deinit.inc
-------------- next part --------------
HTML����������������������������...
下載 



More information about the Groonga-mysql-commit mailing list
Back to archive index