summaryrefslogtreecommitdiff
path: root/storage/mroonga/mysql-test/mroonga/storage/t/optimization_order_limit_optimized_year_equal.test
blob: bac10448269e59ec1f19decdcb15813876c6701c (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
# Copyright(C) 2013 Kentoku SHIBA
#
# 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-1301  USA

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

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

FLUSH STATUS;

CREATE TABLE mroonga_releases (
  id INT PRIMARY KEY AUTO_INCREMENT,
  release_title TEXT,
  release_year YEAR,
  KEY (release_year),
  FULLTEXT KEY (release_title)
) DEFAULT CHARSET UTF8;

INSERT INTO mroonga_releases (release_title, release_year)
       VALUES ("Groonga storage engine (code name Mroonga) 1.0 has been released", "11");
INSERT INTO mroonga_releases (release_title, release_year)
       VALUES ("Rename Groonga storage engine to Mroonga", "2011");
INSERT INTO mroonga_releases (release_title, release_year)
       VALUES ("Mroonga 1.11 has been released", "2011");
INSERT INTO mroonga_releases (release_title, release_year)
       VALUES ("Mroonga 2.0 has been released", "2012");
INSERT INTO mroonga_releases (release_title, release_year)
       VALUES ("Mroonga 3.0 has been released", "13");
INSERT INTO mroonga_releases (release_title, release_year)
       VALUES ("Mroonga 4.0 will be released", "2014");

SELECT * FROM mroonga_releases
         WHERE release_year = "11" AND
               MATCH(release_title) AGAINST("Mroonga" IN BOOLEAN MODE)
         ORDER BY id DESC LIMIT 1,2;

SHOW STATUS LIKE 'mroonga_fast_order_limit';

DROP TABLE mroonga_releases;

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