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
f3f4a51f
Commit
f3f4a51f
authored
Nov 17, 2005
by
unknown
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reorder the variables - should be in alphabetical order
sql/mysqld.cc: reorder sql/set_var.cc: reorder
parent
f58f5bbb
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
5 additions
and
5 deletions
+5
-5
sql/mysqld.cc
sql/mysqld.cc
+4
-4
sql/set_var.cc
sql/set_var.cc
+1
-1
No files found.
sql/mysqld.cc
View file @
f3f4a51f
...
...
@@ -5400,14 +5400,14 @@ log and this option does nothing anymore.",
(
gptr
*
)
&
back_log
,
(
gptr
*
)
&
back_log
,
0
,
GET_ULONG
,
REQUIRED_ARG
,
50
,
1
,
65535
,
0
,
1
,
0
},
#ifdef WITH_BERKELEY_STORAGE_ENGINE
{
"bdb_cache_size"
,
OPT_BDB_CACHE_SIZE
,
"The buffer that is allocated to cache index and rows for BDB tables."
,
(
gptr
*
)
&
berkeley_cache_size
,
(
gptr
*
)
&
berkeley_cache_size
,
0
,
GET_ULL
,
REQUIRED_ARG
,
KEY_CACHE_SIZE
,
20
*
1024
,
(
ulonglong
)
~
0
,
0
,
IO_SIZE
,
0
},
{
"bdb_cache_parts"
,
OPT_BDB_CACHE_PARTS
,
"Number of parts to use for BDB cache."
,
(
gptr
*
)
&
berkeley_cache_parts
,
(
gptr
*
)
&
berkeley_cache_parts
,
0
,
GET_ULONG
,
REQUIRED_ARG
,
1
,
1
,
1024
,
0
,
1
,
0
},
{
"bdb_cache_size"
,
OPT_BDB_CACHE_SIZE
,
"The buffer that is allocated to cache index and rows for BDB tables."
,
(
gptr
*
)
&
berkeley_cache_size
,
(
gptr
*
)
&
berkeley_cache_size
,
0
,
GET_ULL
,
REQUIRED_ARG
,
KEY_CACHE_SIZE
,
20
*
1024
,
(
ulonglong
)
~
0
,
0
,
IO_SIZE
,
0
},
/* QQ: The following should be removed soon! (bdb_max_lock preferred) */
{
"bdb_lock_max"
,
OPT_BDB_MAX_LOCK
,
"Synonym for bdb_max_lock."
,
(
gptr
*
)
&
berkeley_max_lock
,
(
gptr
*
)
&
berkeley_max_lock
,
0
,
GET_ULONG
,
...
...
sql/set_var.cc
View file @
f3f4a51f
...
...
@@ -624,8 +624,8 @@ struct show_var_st init_vars[]= {
{
sys_automatic_sp_privileges
.
name
,(
char
*
)
&
sys_automatic_sp_privileges
,
SHOW_SYS
},
{
"back_log"
,
(
char
*
)
&
back_log
,
SHOW_LONG
},
{
"basedir"
,
mysql_home
,
SHOW_CHAR
},
{
"bdb_cache_size"
,
(
char
*
)
&
berkeley_cache_size
,
SHOW_LONGLONG
},
{
"bdb_cache_parts"
,
(
char
*
)
&
berkeley_cache_parts
,
SHOW_LONG
},
{
"bdb_cache_size"
,
(
char
*
)
&
berkeley_cache_size
,
SHOW_LONGLONG
},
{
"bdb_home"
,
(
char
*
)
&
berkeley_home
,
SHOW_CHAR_PTR
},
{
"bdb_log_buffer_size"
,
(
char
*
)
&
berkeley_log_buffer_size
,
SHOW_LONG
},
{
"bdb_logdir"
,
(
char
*
)
&
berkeley_logdir
,
SHOW_CHAR_PTR
},
...
...
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