summaryrefslogtreecommitdiff
path: root/storage/mroonga/mysql-test/mroonga/wrapper/r/variable_dry_write_insert.result
blob: a9bdd38fa222a5bdb8b9b25632d04400275ec556 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
drop table if exists diaries;
create table diaries (
id int primary key auto_increment,
body text,
fulltext index body_index (body)
) default charset utf8 COMMENT = 'engine "innodb"';
insert into diaries (body) values ("will start groonga!");
select * from diaries;
id	body
1	will start groonga!
select * from diaries where match (body) against ("groonga");
id	body
1	will start groonga!
set mroonga_dry_write=true;
insert into diaries (body) values ("starting groonga...");
select * from diaries;
id	body
1	will start groonga!
2	starting groonga...
select * from diaries where match (body) against ("groonga");
id	body
1	will start groonga!
set mroonga_dry_write=false;
insert into diaries (body) values ("started groonga.");
select * from diaries;
id	body
1	will start groonga!
2	starting groonga...
3	started groonga.
select * from diaries where match (body) against ("groonga");
id	body
1	will start groonga!
3	started groonga.
drop table diaries;