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
e37e0786
Commit
e37e0786
authored
Aug 21, 2006
by
rburnett@bk-internal.mysql.com
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/data0/bk/mysql-5.1
into bk-internal.mysql.com:/data0/bk/mysql-5.1-kt
parents
cf76884b
56443ae2
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
4 deletions
+8
-4
mysql-test/mysql-test-run.pl
mysql-test/mysql-test-run.pl
+4
-2
sql/set_var.cc
sql/set_var.cc
+4
-2
No files found.
mysql-test/mysql-test-run.pl
View file @
e37e0786
...
...
@@ -1299,8 +1299,10 @@ sub executable_setup () {
$path_ndb_tools_dir
=
"
$glob_basedir
/bin
";
$exe_ndb_mgm
=
"
$glob_basedir
/bin/ndb_mgm
";
$exe_ndb_waiter
=
"
$glob_basedir
/bin/ndb_waiter
";
$exe_ndbd
=
"
$glob_basedir
/libexec/ndbd
";
$exe_ndb_mgmd
=
"
$glob_basedir
/libexec/ndb_mgmd
";
$exe_ndbd
=
mtr_exe_exists
("
$glob_basedir
/libexec/ndbd
",
"
$glob_basedir
/bin/ndbd
");
$exe_ndb_mgmd
=
mtr_exe_exists
("
$glob_basedir
/libexec/ndb_mgmd
",
"
$glob_basedir
/bin/ndb_mgmd
");
}
$exe_master_mysqld
=
$exe_master_mysqld
||
$exe_mysqld
;
...
...
sql/set_var.cc
View file @
e37e0786
...
...
@@ -487,7 +487,7 @@ sys_var_const_str sys_version_compile_os("version_compile_os",
SYSTEM_TYPE
);
sys_var_thd_ulong
sys_net_wait_timeout
(
"wait_timeout"
,
&
SV
::
net_wait_timeout
);
#ifdef WITH_INNOBASE_STORAGE_ENGINE
sys_var_long_ptr
sys_innodb_fast_shutdown
(
"innodb_fast_shutdown"
,
&
innobase_fast_shutdown
);
sys_var_long_ptr
sys_innodb_max_dirty_pages_pct
(
"innodb_max_dirty_pages_pct"
,
...
...
@@ -513,7 +513,7 @@ sys_var_long_ptr sys_innodb_commit_concurrency("innodb_commit_concurrency",
sys_var_long_ptr
sys_innodb_flush_log_at_trx_commit
(
"innodb_flush_log_at_trx_commit"
,
&
srv_flush_log_at_trx_commit
);
#endif
/* Condition pushdown to storage engine */
sys_var_thd_bool
sys_engine_condition_pushdown
(
"engine_condition_pushdown"
,
...
...
@@ -816,6 +816,7 @@ SHOW_VAR init_vars[]= {
{
"init_connect"
,
(
char
*
)
&
sys_init_connect
,
SHOW_SYS
},
{
"init_file"
,
(
char
*
)
&
opt_init_file
,
SHOW_CHAR_PTR
},
{
"init_slave"
,
(
char
*
)
&
sys_init_slave
,
SHOW_SYS
},
#ifdef WITH_INNOBASE_STORAGE_ENGINE
{
"innodb_additional_mem_pool_size"
,
(
char
*
)
&
innobase_additional_mem_pool_size
,
SHOW_LONG
},
{
sys_innodb_autoextend_increment
.
name
,
(
char
*
)
&
sys_innodb_autoextend_increment
,
SHOW_SYS
},
{
"innodb_buffer_pool_awe_mem_mb"
,
(
char
*
)
&
innobase_buffer_pool_awe_mem_mb
,
SHOW_LONG
},
...
...
@@ -849,6 +850,7 @@ SHOW_VAR init_vars[]= {
{
sys_innodb_thread_concurrency
.
name
,
(
char
*
)
&
sys_innodb_thread_concurrency
,
SHOW_SYS
},
{
sys_innodb_thread_sleep_delay
.
name
,
(
char
*
)
&
sys_innodb_thread_sleep_delay
,
SHOW_SYS
},
{
sys_innodb_flush_log_at_trx_commit
.
name
,
(
char
*
)
&
sys_innodb_flush_log_at_trx_commit
,
SHOW_SYS
},
#endif
{
sys_interactive_timeout
.
name
,(
char
*
)
&
sys_interactive_timeout
,
SHOW_SYS
},
{
sys_join_buffer_size
.
name
,
(
char
*
)
&
sys_join_buffer_size
,
SHOW_SYS
},
{
sys_key_buffer_size
.
name
,
(
char
*
)
&
sys_key_buffer_size
,
SHOW_SYS
},
...
...
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