mirror of
https://github.com/MariaDB/server.git
synced 2025-05-01 08:45:04 +03:00

.del-ft0000001.b.result~505c4c00a0bddfc4 Delete: mysql-test/r/ft0000001.b.result .del-ft0000001.c.result~1040289a75243a92 Delete: mysql-test/r/ft0000001.c.result .del-ft0000001.d.result~7c549555fbc7663e Delete: mysql-test/r/ft0000001.d.result .del-ft0000001.e.result~c58d30fd7fe86f4f Delete: mysql-test/r/ft0000001.e.result .del-ft0000002.a.result~a89b4db1db19f944 Delete: mysql-test/r/ft0000002.a.result .del-ft0000002.b.result~5de41ce15ae1cedb Delete: mysql-test/r/ft0000002.b.result .del-ft0000002.c.result~cd66b90918a87531 Delete: mysql-test/r/ft0000002.c.result fulltext_cache.result Change mode to -rw-rw-r-- fulltext_cache.result BitKeeper file /usr/home/serg/Abk/mysql/mysql-test/r/fulltext_cache.result config [serg:]checkout:get added fulltext_cache.test BitKeeper file /usr/home/serg/Abk/mysql/mysql-test/t/fulltext_cache.test
33 lines
1009 B
Plaintext
33 lines
1009 B
Plaintext
#
|
|
# Bugreport due to Roy Nasser <roy@vem.ca>
|
|
#
|
|
|
|
CREATE TABLE t1 (
|
|
id int(10) unsigned NOT NULL auto_increment,
|
|
q varchar(255) default NULL,
|
|
PRIMARY KEY (id)
|
|
);
|
|
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)
|
|
);
|
|
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');
|
|
|
|
SELECT item, id, MATCH item AGAINST ('sushi') as x FROM t2 ORDER BY x DESC;
|
|
|
|
SELECT t1.q, t2.item, t2.id, MATCH t2.item AGAINST ('sushi') as x FROM t1, t2
|
|
WHERE (t2.id2 = t1.id) ORDER BY x DESC;
|
|
|