[Groonga-mysql-commit] mroonga/mroonga at fb5020a [master] test: remove needless "SHOW CREATE TABLE"

Back to archive index
Kouhei Sutou null+****@clear*****
Mon Nov 26 12:05:05 JST 2018


Kouhei Sutou	2018-11-26 12:05:05 +0900 (Mon, 26 Nov 2018)

  Revision: fb5020af7c19551c7ec3a14b1a8af7bcc66d1797
  https://github.com/mroonga/mroonga/commit/fb5020af7c19551c7ec3a14b1a8af7bcc66d1797

  Message:
    test: remove needless "SHOW CREATE TABLE"

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

  Modified: mysql-test/mroonga/storage/alter_table/r/add_key_multiple_column_with_data.result (+0 -8)
===================================================================
--- mysql-test/mroonga/storage/alter_table/r/add_key_multiple_column_with_data.result    2018-11-26 11:24:40 +0900 (f7c80d3d)
+++ mysql-test/mroonga/storage/alter_table/r/add_key_multiple_column_with_data.result    2018-11-26 12:05:05 +0900 (4ac17f77)
@@ -5,14 +5,6 @@ id BIGINT(20) PRIMARY KEY AUTO_INCREMENT NOT NULL,
 name CHAR(30) NOT NULL,
 score INT NOT NULL
 ) DEFAULT CHARSET=UTF8MB4;
-SHOW CREATE TABLE scores;
-Table	Create Table
-scores	CREATE TABLE `scores` (
-  `id` bigint(20) NOT NULL AUTO_INCREMENT,
-  `name` char(30) NOT NULL,
-  `score` int(11) NOT NULL,
-  PRIMARY KEY (`id`)
-) ENGINE=Mroonga DEFAULT CHARSET=utf8mb4
 INSERT INTO scores (name, score) VALUES("Taro Yamada", 29);
 INSERT INTO scores (name, score) VALUES("Taro Yamada", -12);
 INSERT INTO scores (name, score) VALUES("Jiro Yamada", 27);

  Modified: mysql-test/mroonga/storage/alter_table/r/drop_key_multiple_column_with_data.result (+0 -9)
===================================================================
--- mysql-test/mroonga/storage/alter_table/r/drop_key_multiple_column_with_data.result    2018-11-26 11:24:40 +0900 (d04c5259)
+++ mysql-test/mroonga/storage/alter_table/r/drop_key_multiple_column_with_data.result    2018-11-26 12:05:05 +0900 (f328dea0)
@@ -6,15 +6,6 @@ name CHAR(30) NOT NULL,
 score INT NOT NULL,
 KEY property (name, score)
 ) DEFAULT CHARSET=UTF8MB4;
-SHOW CREATE TABLE scores;
-Table	Create Table
-scores	CREATE TABLE `scores` (
-  `id` bigint(20) NOT NULL AUTO_INCREMENT,
-  `name` char(30) NOT NULL,
-  `score` int(11) NOT NULL,
-  PRIMARY KEY (`id`),
-  KEY `property` (`name`,`score`)
-) ENGINE=Mroonga DEFAULT CHARSET=utf8mb4
 INSERT INTO scores (name, score) VALUES("Taro Yamada", 29);
 INSERT INTO scores (name, score) VALUES("Taro Yamada", -12);
 INSERT INTO scores (name, score) VALUES("Jiro Yamada", 27);

  Modified: mysql-test/mroonga/storage/alter_table/t/add_key_multiple_column_with_data.test (+0 -1)
===================================================================
--- mysql-test/mroonga/storage/alter_table/t/add_key_multiple_column_with_data.test    2018-11-26 11:24:40 +0900 (a1d15e03)
+++ mysql-test/mroonga/storage/alter_table/t/add_key_multiple_column_with_data.test    2018-11-26 12:05:05 +0900 (1c159a4b)
@@ -27,7 +27,6 @@ CREATE TABLE scores (
   name CHAR(30) NOT NULL,
   score INT NOT NULL
 ) DEFAULT CHARSET=UTF8MB4;
-SHOW CREATE TABLE scores;
 
 INSERT INTO scores (name, score) VALUES("Taro Yamada", 29);
 INSERT INTO scores (name, score) VALUES("Taro Yamada", -12);

  Modified: mysql-test/mroonga/storage/alter_table/t/drop_key_multiple_column_with_data.test (+0 -1)
===================================================================
--- mysql-test/mroonga/storage/alter_table/t/drop_key_multiple_column_with_data.test    2018-11-26 11:24:40 +0900 (0c28b2e6)
+++ mysql-test/mroonga/storage/alter_table/t/drop_key_multiple_column_with_data.test    2018-11-26 12:05:05 +0900 (f1145e01)
@@ -28,7 +28,6 @@ CREATE TABLE scores (
   score INT NOT NULL,
   KEY property (name, score)
 ) DEFAULT CHARSET=UTF8MB4;
-SHOW CREATE TABLE scores;
 
 INSERT INTO scores (name, score) VALUES("Taro Yamada", 29);
 INSERT INTO scores (name, score) VALUES("Taro Yamada", -12);
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <https://lists.osdn.me/mailman/archives/groonga-mysql-commit/attachments/20181126/5ec59b0e/attachment-0001.html>


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