Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
mariadb
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Kirill Smelkov
mariadb
Commits
2d573f58
Commit
2d573f58
authored
Oct 19, 2002
by
serg@serg.mysql.com
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ftb wasn't able to re-initialize index search (oops! in joins)
parent
9e8c87e7
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
myisam/ft_boolean_search.c
myisam/ft_boolean_search.c
+2
-1
No files found.
myisam/ft_boolean_search.c
View file @
2d573f58
...
@@ -202,7 +202,8 @@ static void _ftb_init_index_search(FT_INFO *ftb)
...
@@ -202,7 +202,8 @@ static void _ftb_init_index_search(FT_INFO *ftb)
MI_KEYDEF
*
keyinfo
;
MI_KEYDEF
*
keyinfo
;
my_off_t
keyroot
;
my_off_t
keyroot
;
if
(
ftb
->
state
!=
READY
||
ftb
->
keynr
==
NO_SUCH_KEY
)
if
((
ftb
->
state
!=
READY
&&
ftb
->
state
!=
INDEX_DONE
)
||
ftb
->
keynr
==
NO_SUCH_KEY
)
return
;
return
;
ftb
->
state
=
INDEX_SEARCH
;
ftb
->
state
=
INDEX_SEARCH
;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment