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
c0311edf
Commit
c0311edf
authored
Dec 02, 2011
by
Michael Widenius
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed some Aria limits to be more sane
parent
90f877cc
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
storage/maria/ha_maria.cc
storage/maria/ha_maria.cc
+3
-3
No files found.
storage/maria/ha_maria.cc
View file @
c0311edf
...
...
@@ -233,7 +233,7 @@ static MYSQL_SYSVAR_ULONGLONG(pagecache_buffer_size, pagecache_buffer_size,
"The size of the buffer used for index blocks for Aria tables. "
"Increase this to get better index handling (for all reads and "
"multiple writes) to as much as you can afford."
,
0
,
0
,
KEY_CACHE_SIZE
,
8192
*
16L
,
~
(
ulong
)
0
,
1
);
KEY_CACHE_SIZE
,
8192
*
16L
,
~
(
ulong
long
)
0
,
1
);
static
MYSQL_SYSVAR_ULONG
(
pagecache_division_limit
,
pagecache_division_limit
,
PLUGIN_VAR_RQCMDARG
,
...
...
@@ -249,12 +249,12 @@ static MYSQL_SYSVAR_SET(recover, maria_recover_options, PLUGIN_VAR_OPCMDARG,
static
MYSQL_THDVAR_ULONG
(
repair_threads
,
PLUGIN_VAR_RQCMDARG
,
"Number of threads to use when repairing Aria tables. The value of 1 "
"disables parallel repair."
,
0
,
0
,
1
,
1
,
~
0L
,
1
);
0
,
0
,
1
,
1
,
128
,
1
);
static
MYSQL_THDVAR_ULONG
(
sort_buffer_size
,
PLUGIN_VAR_RQCMDARG
,
"The buffer that is allocated when sorting the index when doing a "
"REPAIR or when creating indexes with CREATE INDEX or ALTER TABLE."
,
0
,
0
,
128L
*
1024L
*
1024L
,
4
,
~
0L
,
1
);
0
,
0
,
128L
*
1024L
*
1024L
,
4
,
UINT_MAX32
,
1
);
static
MYSQL_THDVAR_ENUM
(
stats_method
,
PLUGIN_VAR_RQCMDARG
,
"Specifies how Aria index statistics collection code should treat "
...
...
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