summaryrefslogtreecommitdiff
path: root/storage/innobase/include/row0mysql.h
diff options
context:
space:
mode:
authorMarko Mäkelä <marko.makela@mariadb.com>2017-10-18 08:58:39 +0300
committerMarko Mäkelä <marko.makela@mariadb.com>2017-10-18 09:07:53 +0300
commit3bc094d32a360b7d51600cf11bc4ce24117ecb78 (patch)
tree95cad1f6b41aed4758ffa89c6430d9d249e82b33 /storage/innobase/include/row0mysql.h
parenta63102226e28122373c35bb8921a6656260b7e1e (diff)
downloadmariadb-git-3bc094d32a360b7d51600cf11bc4ce24117ecb78.tar.gz
Remove dead code for pushing down LIMIT to InnoDB FULLTEXT INDEX queries
MySQL 5.7 added code to push down the LIMIT to fulltext search in InnoDB: commit 2cd0ebf97e1b265e2282d7ceb5d8dfb663ffc48f Author: Thirunarayanan Balathandayuthapani <thirunarayanan.balathandayuth@oracle.com> Date: Fri May 27 13:49:28 2016 +0530 Bug #22709692 FTS QUERY EXCEEDS RESULT CACHE LIMIT The code was disabled when MySQL 5.7.9 was merged to MariaDB 10.2.2. We shall remove the disabled code and unnecessary variables.
Diffstat (limited to 'storage/innobase/include/row0mysql.h')
-rw-r--r--storage/innobase/include/row0mysql.h3
1 files changed, 0 insertions, 3 deletions
diff --git a/storage/innobase/include/row0mysql.h b/storage/innobase/include/row0mysql.h
index 8d3752974a6..a7a55d202e8 100644
--- a/storage/innobase/include/row0mysql.h
+++ b/storage/innobase/include/row0mysql.h
@@ -844,9 +844,6 @@ struct row_prebuilt_t {
/** The MySQL table object */
TABLE* m_mysql_table;
-
- /** limit value to avoid fts result overflow */
- ulonglong m_fts_limit;
};
/** Callback for row_mysql_sys_index_iterate() */