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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
7c935405
Commit
7c935405
authored
Oct 30, 2012
by
Anirudh Mangipudi
Browse files
Options
Browse Files
Download
Plain Diff
BUG#11754894: MYISAMCHK ERROR HAS INCORRECT REFERENCE
TO 'MYISAM_SORT_BUFFER_SIZE' Merging from 5.1 to 5.5
parents
b1bb567b
db202cde
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
8 additions
and
1 deletion
+8
-1
storage/myisam/myisamchk.c
storage/myisam/myisamchk.c
+8
-1
No files found.
storage/myisam/myisamchk.c
View file @
7c935405
...
...
@@ -295,7 +295,14 @@ static struct my_option my_long_options[] =
&
check_param
.
write_buffer_length
,
0
,
GET_ULONG
,
REQUIRED_ARG
,
(
long
)
READ_BUFFER_INIT
,
(
long
)
MALLOC_OVERHEAD
,
INT_MAX32
,
(
long
)
MALLOC_OVERHEAD
,
(
long
)
1L
,
0
},
{
"sort_buffer_size"
,
OPT_SORT_BUFFER_SIZE
,
""
,
{
"sort_buffer_size"
,
OPT_SORT_BUFFER_SIZE
,
"Deprecated. myisam_sort_buffer_size alias is being used"
,
&
check_param
.
sort_buffer_length
,
&
check_param
.
sort_buffer_length
,
0
,
GET_ULL
,
REQUIRED_ARG
,
(
long
)
SORT_BUFFER_INIT
,
(
long
)
(
MIN_SORT_BUFFER
+
MALLOC_OVERHEAD
),
SIZE_T_MAX
,
(
long
)
MALLOC_OVERHEAD
,
(
long
)
1L
,
0
},
{
"myisam_sort_buffer_size"
,
OPT_SORT_BUFFER_SIZE
,
"Alias of sort_buffer_size parameter"
,
&
check_param
.
sort_buffer_length
,
&
check_param
.
sort_buffer_length
,
0
,
GET_ULL
,
REQUIRED_ARG
,
(
long
)
SORT_BUFFER_INIT
,
(
long
)
(
MIN_SORT_BUFFER
+
MALLOC_OVERHEAD
),
...
...
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