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
4cd4a3d3
Commit
4cd4a3d3
authored
Jun 06, 2007
by
gluh@mysql.com/eagle.(none)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Bug#28580 Repeatation of status variables
removed duplicated variable declarations
parent
a155d1f9
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
11 additions
and
2 deletions
+11
-2
mysql-test/r/variables.result
mysql-test/r/variables.result
+5
-0
mysql-test/t/variables.test
mysql-test/t/variables.test
+6
-0
sql/set_var.cc
sql/set_var.cc
+0
-2
No files found.
mysql-test/r/variables.result
View file @
4cd4a3d3
...
...
@@ -970,3 +970,8 @@ set global server_id =@my_server_id;
set global slow_launch_time =@my_slow_launch_time;
set global storage_engine =@my_storage_engine;
set global thread_cache_size =@my_thread_cache_size;
show global variables where Variable_name='table_definition_cache' or
Variable_name='table_lock_wait_timeout';
Variable_name Value
table_definition_cache #
table_lock_wait_timeout #
mysql-test/t/variables.test
View file @
4cd4a3d3
...
...
@@ -760,3 +760,9 @@ set global slow_launch_time =@my_slow_launch_time;
set
global
storage_engine
=@
my_storage_engine
;
set
global
thread_cache_size
=@
my_thread_cache_size
;
#
# Bug#28580 Repeatation of status variables
#
--
replace_column
2
#
show
global
variables
where
Variable_name
=
'table_definition_cache'
or
Variable_name
=
'table_lock_wait_timeout'
;
sql/set_var.cc
View file @
4cd4a3d3
...
...
@@ -699,8 +699,6 @@ static SHOW_VAR fixed_vars[]= {
#ifdef HAVE_SYS_UN_H
{
"socket"
,
(
char
*
)
&
mysqld_unix_port
,
SHOW_CHAR_PTR
},
#endif
{
"table_definition_cache"
,
(
char
*
)
&
table_def_size
,
SHOW_LONG
},
{
"table_lock_wait_timeout"
,
(
char
*
)
&
table_lock_wait_timeout
,
SHOW_LONG
},
#ifdef HAVE_THR_SETCONCURRENCY
{
"thread_concurrency"
,
(
char
*
)
&
concurrency
,
SHOW_LONG
},
#endif
...
...
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