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
bb1c3722
Commit
bb1c3722
authored
Apr 28, 2007
by
istruewing@chilla.local
Browse files
Options
Browse Files
Download
Plain Diff
Merge bk-internal.mysql.com:/home/bk/mysql-5.1-wl2936
into chilla.local:/home/mydev/mysql-5.1-wl2936-two
parents
6a8844de
4f8e86db
Changes
1
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
sql/sql_plugin.cc
sql/sql_plugin.cc
+2
-2
No files found.
sql/sql_plugin.cc
View file @
bb1c3722
...
...
@@ -2475,10 +2475,10 @@ SHOW_TYPE sys_var_pluginvar::show_type()
byte
*
sys_var_pluginvar
::
real_value_ptr
(
THD
*
thd
,
enum_var_type
type
)
{
DBUG_ASSERT
(
thd
||
(
type
!=
OPT_SESSION
));
DBUG_ASSERT
(
thd
||
(
type
==
OPT_GLOBAL
));
if
(
plugin_var
->
flags
&
PLUGIN_VAR_THDLOCAL
)
{
if
(
type
!=
OPT_SESSION
)
if
(
type
==
OPT_GLOBAL
)
thd
=
NULL
;
return
intern_sys_var_ptr
(
thd
,
*
(
int
*
)
(
plugin_var
+
1
),
false
);
...
...
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