summaryrefslogtreecommitdiff
path: root/storage/mroonga/mysql-test/mroonga/storage/r/index_multiple_column_range_partially_used_have_prefix_greater_than.result
blob: c3dc0139b978b76701f3ad931a4a44fe7471d04c (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 items;
CREATE TABLE items (
id INT PRIMARY KEY AUTO_INCREMENT NOT NULL,
score1 INT,
score2 INT,
created_at DATETIME,
INDEX (score1, created_at, score2)
) DEFAULT CHARSET=UTF8;
SHOW CREATE TABLE items;
Table	Create Table
items	CREATE TABLE `items` (
  `id` int(11) NOT NULL AUTO_INCREMENT,
  `score1` int(11) DEFAULT NULL,
  `score2` int(11) DEFAULT NULL,
  `created_at` datetime DEFAULT NULL,
  PRIMARY KEY (`id`),
  KEY `score1` (`score1`,`created_at`,`score2`)
) ENGINE=Mroonga DEFAULT CHARSET=utf8mb3
INSERT INTO items (score1, score2, created_at) VALUES(1, 0, "2015-07-01 00:00:00");
INSERT INTO items (score1, score2, created_at) VALUES(2, 0, "2015-07-01 00:00:00");
INSERT INTO items (score1, score2, created_at) VALUES(3, 0, "2015-07-01 00:00:00");
INSERT INTO items (score1, score2, created_at) VALUES(1, 0, "2015-07-01 12:00:00");
INSERT INTO items (score1, score2, created_at) VALUES(2, 0, "2015-07-01 12:00:00");
INSERT INTO items (score1, score2, created_at) VALUES(3, 0, "2015-07-01 12:00:00");
INSERT INTO items (score1, score2, created_at) VALUES(1, 0, "2015-07-02 00:00:00");
INSERT INTO items (score1, score2, created_at) VALUES(2, 0, "2015-07-02 00:00:00");
INSERT INTO items (score1, score2, created_at) VALUES(3, 0, "2015-07-02 00:00:00");
SELECT *
FROM items
WHERE score1 = 2 AND created_at > "2015-07-01 12:00:00"
       ORDER BY created_at DESC;
id	score1	score2	created_at
8	2	0	2015-07-02 00:00:00
DROP TABLE items;