diff options
author | Thirunarayanan Balathandayuthapani <thiru@mariadb.com> | 2021-07-06 18:16:11 +0530 |
---|---|---|
committer | Thirunarayanan Balathandayuthapani <thiru@mariadb.com> | 2021-07-26 12:44:15 +0530 |
commit | e8d849ec8c36d0d98f658a75d5fc4f3294a79f13 (patch) | |
tree | c02dc7851cee8fa64798def9c692ac8dbf0f462f /include/mysql/plugin_auth.h.pp | |
parent | f29b3d6d8239d54e08868912093b16187086e133 (diff) | |
download | mariadb-git-bb-10.2-MDEV-24088.tar.gz |
MDEV-24088 Assertion in InnoDB's FTS code may be triggered by a repeated words fed to simple_parser pluginbb-10.2-MDEV-24088
- InnoDB simple parser fails while parsing the repeated word.
This failure mainly because the simple parser fails to
update the position of the keyword within the word. The patch
is basically use the mysql/mysql-server@0c954c2289a75d90d1088356b1092437ebf45a1d
to solve the issue.
Diffstat (limited to 'include/mysql/plugin_auth.h.pp')
-rw-r--r-- | include/mysql/plugin_auth.h.pp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/include/mysql/plugin_auth.h.pp b/include/mysql/plugin_auth.h.pp index 62061f74274..76b8dfe4c59 100644 --- a/include/mysql/plugin_auth.h.pp +++ b/include/mysql/plugin_auth.h.pp @@ -453,6 +453,7 @@ typedef struct st_mysql_ftparser_boolean_info int weight_adjust; char wasign; char trunc; + int position; char prev; char *quot; } MYSQL_FTPARSER_BOOLEAN_INFO; |