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 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177
|
--source include/have_debug.inc
--echo # Bug #22709692 FTS QUERY EXCEEDS RESULT CACHE LIMIT
CREATE TABLE articles (
id INT UNSIGNED AUTO_INCREMENT NOT NULL PRIMARY KEY,
title VARCHAR(200),
body TEXT,
FULLTEXT (title,body),
FULLTEXT (body))ENGINE=InnoDB;
INSERT INTO articles (title,body) VALUES
('MySQL Tutorial','DBMS stands for DataBase ...'),
('How To Use MySQL Well','After you went through a ...'),
('Optimizing MySQL','In this tutorial we will show ...'),
('1001 MySQL Tricks','1. Never run mysqld as root. 2. ...'),
('MySQL vs. YourSQL','In the following database comparison ...'),
('MySQL Security','When configured properly, MySQL ...');
--echo # Query involves Ranking
--skip_if_hypergraph # Non-deterministic result (LIMIT without ORDER BY).
# The old optimizer chooses an ordered index scan here,
# and returns the highest-ranking match. (For legacy
# reasons: The documentation used to promise ordering
# if the WHERE clause contained a natural langugage
# query. The promise wasn't always kept.) The hypergraph
# optimizer does not request an ordered scan.
SELECT * FROM articles
WHERE MATCH (title,body)
AGAINST ('MySQL' IN NATURAL LANGUAGE MODE) LIMIT 1;
--echo # Without optimization
# Disabling the fts_union_limit optimization means that InnoDB ignores
# the no_ranking and limit hints, and returns the rows in order. So we
# get the highest-ranking document.
SET DEBUG = '+d,fts_union_limit_off';
SELECT * FROM articles
WHERE MATCH (title,body)
AGAINST ('MySQL' IN NATURAL LANGUAGE MODE) LIMIT 1;
SET DEBUG = '-d,fts_union_limit_off';
--echo # Query involves No Ranking and fts_union operations
# The optimizer gives a hint that ranking of the results is not
# necessary, and a random matching document, not necessarily the
# highest-ranking one, is returned.
SELECT * FROM articles
WHERE MATCH (title,body)
AGAINST ('MySQL' IN BOOLEAN MODE) limit 1;
--echo # Without optimization
# The no_ranking hint is ignored when the optimization is disabled, so
# InnoDB performs ranking of the results and returns the
# highest-ranking one.
SET DEBUG = '+d,fts_union_limit_off';
SELECT * FROM articles
WHERE MATCH (title,body)
AGAINST ('MySQL' IN BOOLEAN MODE) limit 1;
SET DEBUG = '-d,fts_union_limit_off';
--echo # Query involves No ranking and fts_union, fts_ignore
SELECT * FROM articles
WHERE MATCH (title,body)
AGAINST ('MySQL -YourSQL' IN BOOLEAN MODE) limit 1;
--echo # Without optimization
SET DEBUG = '+d,fts_union_limit_off';
SELECT * FROM articles
WHERE MATCH (title,body)
AGAINST ('MySQL -YourSQL' IN BOOLEAN MODE) limit 1;
SET DEBUG = '-d,fts_union_limit_off';
--echo # Query with fts_intersect
SELECT * FROM articles
WHERE MATCH (title,body)
AGAINST ('MySQL +YourSQL' IN BOOLEAN MODE) limit 1;
--echo # Without optimization
SET DEBUG = '+d,fts_union_limit_off';
SELECT * FROM articles
WHERE MATCH (title,body)
AGAINST ('MySQL +YourSQL' IN BOOLEAN MODE) limit 1;
SET DEBUG = '-d,fts_union_limit_off';
# insert record with @ character which is used in proximity search
INSERT INTO articles (title,body) VALUES
('MySQL Tutorial','request doc@oraclehelp.com ...'),
('MySQL Tutorial','request support@oraclehelp.com ...'),
('Trial version','query performace @1255 minute on 2.1Hz
Memory 2GB...'),
('when To Use MySQL Well','for free faq mail@xyz.com ...');
--echo # Query with @distance
SELECT * FROM articles
WHERE MATCH (title,body)
AGAINST ('"MySQL request"@3' IN BOOLEAN MODE) limit 1;
--echo # Without optimization
SET DEBUG = '+d,fts_union_limit_off';
SELECT * FROM articles
WHERE MATCH (title,body)
AGAINST ('"MySQL request"@3' IN BOOLEAN MODE) limit 1;
SET DEBUG = '-d,fts_union_limit_off';
--echo # Query with subexpression
SELECT * FROM articles
WHERE MATCH (title,body)
AGAINST ('+MySQL +(-support +doc)' IN BOOLEAN MODE) limit 1;
--echo # Without optimization
SET DEBUG = '+d,fts_union_limit_off';
SELECT * FROM articles
WHERE MATCH (title,body)
AGAINST ('+MySQL +(-support +doc)' IN BOOLEAN MODE) limit 1;
SET DEBUG = '-d,fts_union_limit_off';
--echo # limit num1 OFFSET num2
SELECT * FROM articles
WHERE MATCH (title,body)
AGAINST ('MySQL' in boolean mode) limit 4 offset 2;
--echo # Without optimization
SET DEBUG = '+d,fts_union_limit_off';
SELECT * FROM articles
WHERE MATCH (title,body)
AGAINST ('MySQL' in boolean mode) limit 4 offset 2;
SET DEBUG = '-d,fts_union_limit_off';
--echo # wild card search
SELECT * FROM articles
WHERE MATCH (title,body)
AGAINST ('ru*' IN BOOLEAN MODE) limit 1;
--echo # Without optimization
SET DEBUG = '+d,fts_union_limit_off';
SELECT * FROM articles
WHERE MATCH (title,body)
AGAINST ('ru*' IN BOOLEAN MODE) limit 1;
SET DEBUG = '-d,fts_union_limit_off';
--echo # phrase search
SELECT * FROM articles
WHERE MATCH (title,body)
AGAINST ('"request support"' IN BOOLEAN MODE) limit 1;
--echo # Without optimization
SET DEBUG = '+d,fts_union_limit_off';
SELECT * FROM articles
WHERE MATCH (title,body)
AGAINST ('"request support"' IN BOOLEAN MODE) limit 1;
SET DEBUG = '-d,fts_union_limit_off';
DROP TABLE articles;
--echo #
--echo # Bug #31228694 FTS QUERY WITH LIMIT CRASH
--echo #
let $restart_parameters = restart: --ngram_token_size=1;
--source include/restart_mysqld.inc
select @@ngram_token_size;
CREATE TABLE t1 (
id INT(10) unsigned NOT NULL AUTO_INCREMENT,
name VARCHAR(45) NOT NULL,
PRIMARY KEY (id) USING BTREE,
FULLTEXT KEY search_name (name) WITH PARSER ngram
) ENGINE=InnoDB;
INSERT INTO t1(name) VALUES('x'), ('mx'), ('mx'), ('mx'), ('mx');
SELECT * FROM t1 WHERE MATCH (`name`) AGAINST ('mx*' IN BOOLEAN MODE) LIMIT 3;
DROP TABLE t1;
# restore config
let $restart_parameters = restart: ;
--source include/restart_mysqld.inc
|