Kouhei Sutou
null+****@clear*****
Thu Oct 4 10:30:38 JST 2012
Kouhei Sutou 2011-10-13 17:06:51 +0900 (Thu, 13 Oct 2011) New Revision: 22f580431461008500c3b9844a295e8145322ca3 https://github.com/mroonga/mroonga/commit/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 16:48:33 +0900 (9f45bd8) +++ test/sql/groonga_storage/t/dry_write_delete.test 2011-10-13 17:06:51 +0900 (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 16:48:33 +0900 (e17d590) +++ test/sql/groonga_storage/t/dry_write_insert.test 2011-10-13 17:06:51 +0900 (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 16:48:33 +0900 (7a1a6a2) +++ test/sql/groonga_storage/t/dry_write_update.test 2011-10-13 17:06:51 +0900 (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 -------------- next part -------------- HTML����������������������������...Download