mirror of
https://github.com/MariaDB/server.git
synced 2025-01-16 20:12:31 +01:00
3f80899679
'ps_1general' and 'fulltext_cache' test cases. mysql-test/r/fulltext_cache.result: To pass on Windows, round to less digits mysql-test/t/fulltext_cache.test: To pass on Windows, round to less digits mysql-test/t/ps_1general.test: To pass on Windows, change \\ to / in result mysql-test/t/rpl_delete_all.test: To pass on Windows, change \\ to / in result mysql-test/mysql-test-run.pl: Pass mysqld --console to catch output on Windows mysql-test/lib/mtr_process.pl: Check error from exec() to avoid becoming a fork() bomb
44 lines
1.4 KiB
Text
44 lines
1.4 KiB
Text
#
|
|
# Bugreport due to Roy Nasser <roy@vem.ca>
|
|
#
|
|
|
|
--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)
|
|
);
|
|
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 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;
|