summaryrefslogtreecommitdiff
path: root/storage/mroonga/mysql-test/mroonga/storage/t/optimization_order_limit_not_optimized_multiple_match_againsts.test
blob: ce1f63604e7404008a9741673ee816bfabfe8b73 (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
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
# Copyright(C) 2015 Kouhei Sutou <kou@clear-code.com>
#
# This library is free software; you can redistribute it and/or
# modify it under the terms of the GNU Lesser General Public
# License as published by the Free Software Foundation; either
# version 2.1 of the License, or (at your option) any later version.
#
# This library is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
# Lesser General Public License for more details.
#
# You should have received a copy of the GNU Lesser General Public
# License along with this library; if not, write to the Free Software
# Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA  02110-1335  USA

--source ../../include/mroonga/have_mroonga.inc

--disable_warnings
DROP TABLE IF EXISTS memos;
--enable_warnings

FLUSH STATUS;

SET NAMES UTF8;
CREATE TABLE memos (
  id INT UNSIGNED NOT NULL,
  title VARCHAR(255),
  content TEXT,
  FULLTEXT INDEX(title),
  FULLTEXT INDEX(content)
) DEFAULT CHARSET UTF8;

INSERT INTO memos VALUES(5,  "title 1",   "content a");
INSERT INTO memos VALUES(12, "title 1",   "content a");
INSERT INTO memos VALUES(10, "title 1",   "content a");
INSERT INTO memos VALUES(4,  "title 2",   "content b");
INSERT INTO memos VALUES(6,  "title 2",   "content b");
INSERT INTO memos VALUES(1,  "title 2",   "content b");
INSERT INTO memos VALUES(11, "title 1-a", "content a-1");
INSERT INTO memos VALUES(3,  "title 2-b", "content a-2");
INSERT INTO memos VALUES(2,  "title 2-c", "content a-3");
INSERT INTO memos VALUES(8,  "title 1-a", "content b-1");
INSERT INTO memos VALUES(9,  "title 2-b", "content b-2");
INSERT INTO memos VALUES(7,  "title 2-c", "content b-3");

SELECT * FROM memos
         WHERE MATCH(title) AGAINST("+1" IN BOOLEAN MODE) AND
               MATCH(content) AGAINST("+a" IN BOOLEAN MODE)
         ORDER BY id
         LIMIT 1,3;

SHOW STATUS LIKE 'mroonga_fast_order_limit';

DROP TABLE memos;

--source ../../include/mroonga/have_mroonga_deinit.inc