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
d5fbeee7
Commit
d5fbeee7
authored
Jun 28, 2003
by
serg@serg.mylan
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixed a bug that made 4.0 MYI+FT files unreadable in 4.1
parent
55115e0f
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
1 addition
and
2 deletions
+1
-2
myisam/mi_open.c
myisam/mi_open.c
+0
-1
myisam/myisamchk.c
myisam/myisamchk.c
+1
-1
No files found.
myisam/mi_open.c
View file @
d5fbeee7
...
...
@@ -335,7 +335,6 @@ MI_INFO *mi_open(const char *name, int mode, uint open_flags)
{
/* 4.0 compatibility code, to be removed in 5.0 */
share
->
keyinfo
[
i
].
seg
=
pos
-
FT_SEGS
;
share
->
keyinfo
[
i
].
keysegs
-=
FT_SEGS
;
share
->
state
.
header
.
fulltext_keys
++
;
}
else
{
...
...
myisam/myisamchk.c
View file @
d5fbeee7
...
...
@@ -876,7 +876,7 @@ static int myisamchk(MI_CHECK *param, my_string filename)
}
else
{
if
(
share
->
state
.
header
.
fulltext_keys
&&
!
stopwords_inited
++
)
if
(
!
stopwords_inited
++
)
ft_init_stopwords
();
if
(
!
(
param
->
testflag
&
T_READONLY
))
...
...
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