fulltext_cache.test
上传用户:romrleung
上传日期:2022-05-23
资源大小:18897k
文件大小:1k
源码类别:

MySQL数据库

开发平台:

Visual C++

  1. #
  2. # Bugreport due to Roy Nasser <roy@vem.ca>
  3. #
  4. --disable_warnings
  5. drop table if exists t1, t2;
  6. --enable_warnings
  7. CREATE TABLE t1 (
  8.   id int(10) unsigned NOT NULL auto_increment,
  9.   q varchar(255) default NULL,
  10.   PRIMARY KEY (id)
  11. );
  12. INSERT INTO t1 VALUES (1,'aaaaaaaaa dsaass de');
  13. INSERT INTO t1 VALUES (2,'ssde df s fsda sad er');
  14. CREATE TABLE t2 (
  15.   id int(10) unsigned NOT NULL auto_increment,
  16.   id2 int(10) unsigned default NULL,
  17.   item varchar(255) default NULL,
  18.   PRIMARY KEY (id),
  19.   FULLTEXT KEY item(item)
  20. );
  21. INSERT INTO t2 VALUES (1,1,'sushi');
  22. INSERT INTO t2 VALUES (2,1,'Bolo de Chocolate');
  23. INSERT INTO t2 VALUES (3,1,'Feijoada');
  24. INSERT INTO t2 VALUES (4,1,'Mousse de Chocolate');
  25. INSERT INTO t2 VALUES (5,2,'um copo de Vodka');
  26. INSERT INTO t2 VALUES (6,2,'um chocolate Snickers');
  27. INSERT INTO t2 VALUES (7,1,'Bife');
  28. INSERT INTO t2 VALUES (8,1,'Pizza de Salmao');
  29. SELECT t1.q, t2.item, t2.id, round(MATCH t2.item AGAINST ('sushi'),6)
  30. as x FROM t1, t2 WHERE (t2.id2 = t1.id) ORDER BY x DESC,t2.id;
  31. SELECT t1.q, t2.item, t2.id, MATCH t2.item AGAINST ('sushi' IN BOOLEAN MODE)
  32. as x FROM t1, t2 WHERE (t2.id2 = t1.id) ORDER BY x DESC,t2.id;
  33. SELECT t1.q, t2.item, t2.id, round(MATCH t2.item AGAINST ('sushi'),6)
  34. as x FROM t2, t1 WHERE (t2.id2 = t1.id) ORDER BY x DESC,t2.id;
  35. SELECT t1.q, t2.item, t2.id, MATCH t2.item AGAINST ('sushi' IN BOOLEAN MODE)
  36. as x FROM t2, t1 WHERE (t2.id2 = t1.id) ORDER BY x DESC,t2.id;
  37. drop table t1, t2;
  38. # End of 4.1 tests