summaryrefslogtreecommitdiff
path: root/mysql-test/suite/innodb_fts/t/fulltext_cache.test
blob: fa7ad49e88131dcec5c9cb7d52757404ee34fcc0 (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
#
# Bugreport due to Roy Nasser <roy@vem.ca>
#
--source include/have_innodb.inc

--disable_warnings
drop table if exists t1, t2;
--enable_warnings

CREATE TABLE t1 (
  id int(10) unsigned NOT NULL auto_increment,
  q varchar(255) default NULL,
  PRIMARY KEY (id)
) ENGINE = InnoDB;

INSERT INTO t1 VALUES (1,'aaaaaaaaa dsaass de');
INSERT INTO t1 VALUES (2,'ssde df s fsda sad er');

CREATE TABLE t2 (
  id int(10) unsigned NOT NULL auto_increment,
  id2 int(10) unsigned default NULL,
  item varchar(255) default NULL,
  PRIMARY KEY (id),
  FULLTEXT KEY item(item)
) ENGINE = InnoDB;

INSERT INTO t2 VALUES (1,1,'sushi');
INSERT INTO t2 VALUES (2,1,'Bolo de Chocolate');
INSERT INTO t2 VALUES (3,1,'Feijoada');
INSERT INTO t2 VALUES (4,1,'Mousse de Chocolate');
INSERT INTO t2 VALUES (5,2,'um copo de Vodka');
INSERT INTO t2 VALUES (6,2,'um chocolate Snickers');
INSERT INTO t2 VALUES (7,1,'Bife');
INSERT INTO t2 VALUES (8,1,'Pizza de Salmao');

-- disable_result_log
ANALYZE TABLE t1;
ANALYZE TABLE t2;
-- enable_result_log

SELECT t1.q, t2.item, t2.id, round(MATCH t2.item AGAINST ('sushi'),6)
as x FROM t1, t2 WHERE (t2.id2 = t1.id) ORDER BY x DESC,t2.id;

SELECT t1.q, t2.item, t2.id, MATCH t2.item AGAINST ('sushi' IN BOOLEAN MODE)
as x FROM t1, t2 WHERE (t2.id2 = t1.id) ORDER BY x DESC,t2.id;

SELECT t1.q, t2.item, t2.id, round(MATCH t2.item AGAINST ('sushi'),6)
as x FROM t2, t1 WHERE (t2.id2 = t1.id) ORDER BY x DESC,t2.id;

SELECT t1.q, t2.item, t2.id, MATCH t2.item AGAINST ('sushi' IN BOOLEAN MODE)
as x FROM t2, t1 WHERE (t2.id2 = t1.id) ORDER BY x DESC,t2.id;

drop table t1, t2;

# End of 4.1 tests