[Groonga-mysql-commit] mroonga/mroonga [master] [test][storage] add new lines.

Back to archive index

null+****@clear***** null+****@clear*****
2011年 10月 13日 (木) 17:06:51 JST


Kouhei Sutou	2011-10-13 08:06:51 +0000 (Thu, 13 Oct 2011)

  New Revision: 22f580431461008500c3b9844a295e8145322ca3

  Log:
    [test][storage] add new lines.

  Modified files:
    test/sql/groonga_storage/t/dry_write_delete.test
    test/sql/groonga_storage/t/dry_write_insert.test
    test/sql/groonga_storage/t/dry_write_update.test

  Modified: test/sql/groonga_storage/t/dry_write_delete.test (+4 -0)
===================================================================
--- test/sql/groonga_storage/t/dry_write_delete.test    2011-10-13 07:48:33 +0000 (9f45bd8)
+++ test/sql/groonga_storage/t/dry_write_delete.test    2011-10-13 08:06:51 +0000 (6a22828)
@@ -26,14 +26,18 @@ create table diaries (
   fulltext index body_index (body)
 ) default charset utf8;
 show create table diaries;
+
 insert into diaries (body) values ("will start groonga!");
 select * from diaries;
+
 set global groonga_dry_write=true;
 delete from diaries where id = 1;
 select * from diaries;
+
 set global groonga_dry_write=false;
 delete from diaries where id = 1;
 select * from diaries;
+
 drop table diaries;
 
 --source suite/groonga_include/groonga_deinit.inc

  Modified: test/sql/groonga_storage/t/dry_write_insert.test (+4 -0)
===================================================================
--- test/sql/groonga_storage/t/dry_write_insert.test    2011-10-13 07:48:33 +0000 (e17d590)
+++ test/sql/groonga_storage/t/dry_write_insert.test    2011-10-13 08:06:51 +0000 (197fbe8)
@@ -26,14 +26,18 @@ create table diaries (
   fulltext index body_index (body)
 ) default charset utf8;
 show create table diaries;
+
 insert into diaries (body) values ("will start groonga!");
 select * from diaries;
+
 set global groonga_dry_write=true;
 insert into diaries (body) values ("starting groonga...");
 select * from diaries;
+
 set global groonga_dry_write=false;
 insert into diaries (body) values ("started groonga.");
 select * from diaries;
+
 drop table diaries;
 
 --source suite/groonga_include/groonga_deinit.inc

  Modified: test/sql/groonga_storage/t/dry_write_update.test (+4 -0)
===================================================================
--- test/sql/groonga_storage/t/dry_write_update.test    2011-10-13 07:48:33 +0000 (7a1a6a2)
+++ test/sql/groonga_storage/t/dry_write_update.test    2011-10-13 08:06:51 +0000 (e3a2d03)
@@ -26,13 +26,17 @@ create table diaries (
   fulltext index body_index (body)
 ) default charset utf8;
 show create table diaries;
+
 insert into diaries (body) values ("will start groonga!");
+
 set global groonga_dry_write=true;
 update diaries set body = "starting groonga..." where id = 1;
 select * from diaries;
+
 set global groonga_dry_write=false;
 update diaries set body = "starting groonga..." where id = 1;
 select * from diaries;
+
 drop table diaries;
 
 --source suite/groonga_include/groonga_deinit.inc




Groonga-mysql-commit メーリングリストの案内
Back to archive index