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
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
8cc6de79
Commit
8cc6de79
authored
Apr 28, 2007
by
unknown
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
parents
016a7652
381a9387
Changes
1
Hide 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 @
8cc6de79
...
@@ -2474,10 +2474,10 @@ SHOW_TYPE sys_var_pluginvar::show_type()
...
@@ -2474,10 +2474,10 @@ SHOW_TYPE sys_var_pluginvar::show_type()
byte
*
sys_var_pluginvar
::
real_value_ptr
(
THD
*
thd
,
enum_var_type
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
(
plugin_var
->
flags
&
PLUGIN_VAR_THDLOCAL
)
{
{
if
(
type
!=
OPT_SESSION
)
if
(
type
==
OPT_GLOBAL
)
thd
=
NULL
;
thd
=
NULL
;
return
intern_sys_var_ptr
(
thd
,
*
(
int
*
)
(
plugin_var
+
1
),
false
);
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