[Groonga-mysql-commit] mroonga/mroonga at 143df56 [master] test: recreate database for "dump" Groonga command tests

アーカイブの一覧に戻る

Kouhei Sutou null+****@clear*****
Mon Oct 13 00:28:08 JST 2014


Kouhei Sutou	2014-10-13 00:28:08 +0900 (Mon, 13 Oct 2014)

  New Revision: 143df5672bca4af456464b4be850c4e8d4da90d8
  https://github.com/mroonga/mroonga/commit/143df5672bca4af456464b4be850c4e8d4da90d8

  Message:
    test: recreate database for "dump" Groonga command tests

  Modified files:
    mysql-test/mroonga/storage/create/table/token_filters/table_comment/r/multiple_token_filters.result
    mysql-test/mroonga/storage/create/table/token_filters/table_comment/r/one_token_filter.result
    mysql-test/mroonga/storage/create/table/token_filters/table_comment/t/multiple_token_filters.test
    mysql-test/mroonga/storage/create/table/token_filters/table_comment/t/one_token_filter.test

  Modified: mysql-test/mroonga/storage/create/table/token_filters/table_comment/r/multiple_token_filters.result (+3 -2)
===================================================================
--- mysql-test/mroonga/storage/create/table/token_filters/table_comment/r/multiple_token_filters.result    2014-10-12 23:01:45 +0900 (8ebfb04)
+++ mysql-test/mroonga/storage/create/table/token_filters/table_comment/r/multiple_token_filters.result    2014-10-13 00:28:08 +0900 (171048b)
@@ -1,5 +1,6 @@
-DROP TABLE IF EXISTS memos;
-DROP TABLE IF EXISTS terms;
+DROP DATABASE test;
+CREATE DATABASE test;
+USE test;
 SELECT mroonga_command("register token_filters/stop_word");
 mroonga_command("register token_filters/stop_word")
 true

  Modified: mysql-test/mroonga/storage/create/table/token_filters/table_comment/r/one_token_filter.result (+3 -2)
===================================================================
--- mysql-test/mroonga/storage/create/table/token_filters/table_comment/r/one_token_filter.result    2014-10-12 23:01:45 +0900 (93c314c)
+++ mysql-test/mroonga/storage/create/table/token_filters/table_comment/r/one_token_filter.result    2014-10-13 00:28:08 +0900 (8119566)
@@ -1,5 +1,6 @@
-DROP TABLE IF EXISTS memos;
-DROP TABLE IF EXISTS terms;
+DROP DATABASE test;
+CREATE DATABASE test;
+USE test;
 SELECT mroonga_command("register token_filters/stop_word");
 mroonga_command("register token_filters/stop_word")
 true

  Modified: mysql-test/mroonga/storage/create/table/token_filters/table_comment/t/multiple_token_filters.test (+3 -2)
===================================================================
--- mysql-test/mroonga/storage/create/table/token_filters/table_comment/t/multiple_token_filters.test    2014-10-12 23:01:45 +0900 (1e9ae8a)
+++ mysql-test/mroonga/storage/create/table/token_filters/table_comment/t/multiple_token_filters.test    2014-10-13 00:28:08 +0900 (69f7b63)
@@ -18,8 +18,9 @@
 --source ../../../../../../include/mroonga/load_mroonga_functions.inc
 
 --disable_warnings
-DROP TABLE IF EXISTS memos;
-DROP TABLE IF EXISTS terms;
+DROP DATABASE test;
+CREATE DATABASE test;
+USE test;
 --enable_warnings
 
 SELECT mroonga_command("register token_filters/stop_word");

  Modified: mysql-test/mroonga/storage/create/table/token_filters/table_comment/t/one_token_filter.test (+3 -2)
===================================================================
--- mysql-test/mroonga/storage/create/table/token_filters/table_comment/t/one_token_filter.test    2014-10-12 23:01:45 +0900 (3619351)
+++ mysql-test/mroonga/storage/create/table/token_filters/table_comment/t/one_token_filter.test    2014-10-13 00:28:08 +0900 (dca9726)
@@ -18,8 +18,9 @@
 --source ../../../../../../include/mroonga/load_mroonga_functions.inc
 
 --disable_warnings
-DROP TABLE IF EXISTS memos;
-DROP TABLE IF EXISTS terms;
+DROP DATABASE test;
+CREATE DATABASE test;
+USE test;
 --enable_warnings
 
 SELECT mroonga_command("register token_filters/stop_word");
-------------- next part --------------
HTML����������������������������...
ダウンロード 



More information about the Groonga-mysql-commit mailing list
アーカイブの一覧に戻る