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
03e0f1f8
Commit
03e0f1f8
authored
Dec 23, 2014
by
Nirbhay Choubey
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-7053 : WSREP_STATUS & WSREP_MEMBERSHIP I_S tables
Addendum : Renamed plugin .so file.
parent
0b87de12
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
5 deletions
+5
-5
plugin/wsrep_info/CMakeLists.txt
plugin/wsrep_info/CMakeLists.txt
+1
-1
plugin/wsrep_info/mysql-test/wsrep_info/suite.opt
plugin/wsrep_info/mysql-test/wsrep_info/suite.opt
+1
-1
plugin/wsrep_info/mysql-test/wsrep_info/suite.pm
plugin/wsrep_info/mysql-test/wsrep_info/suite.pm
+2
-2
plugin/wsrep_info/plugin.cc
plugin/wsrep_info/plugin.cc
+1
-1
No files found.
plugin/wsrep_info/CMakeLists.txt
View file @
03e0f1f8
IF
(
WITH_WSREP
)
INCLUDE_DIRECTORIES
(
${
CMAKE_SOURCE_DIR
}
/sql
${
CMAKE_SOURCE_DIR
}
/wsrep
)
MYSQL_ADD_PLUGIN
(
WSREP_
STATUS
plugin.cc MODULE_ONLY
)
MYSQL_ADD_PLUGIN
(
WSREP_
INFO
plugin.cc MODULE_ONLY
)
ENDIF
()
plugin/wsrep_info/mysql-test/wsrep_info/suite.opt
View file @
03e0f1f8
--plugin-load-add=$WSREP_
STATUS
_SO
--plugin-load-add=$WSREP_
INFO
_SO
plugin/wsrep_info/mysql-test/wsrep_info/suite.pm
View file @
03e0f1f8
package
My::Suite::
WSREP_
STATUS
;
package
My::Suite::
WSREP_
INFO
;
use
File::
Basename
;
use
My::
Find
;
...
...
@@ -14,7 +14,7 @@ my ($provider) = grep { -f $_ } $ENV{WSREP_PROVIDER},
return
"
No wsrep provider library
"
unless
-
f
$provider
;
return
"
No WSREP_
STATUS plugin
"
unless
$ENV
{
WSREP_STATUS
_SO
};
return
"
No WSREP_
INFO plugin
"
unless
$ENV
{
WSREP_INFO
_SO
};
$ENV
{
WSREP_PROVIDER
}
=
$provider
;
...
...
plugin/wsrep_info/plugin.cc
View file @
03e0f1f8
...
...
@@ -231,7 +231,7 @@ static struct st_mysql_information_schema wsrep_status_plugin=
Plugin library descriptor
*/
maria_declare_plugin
(
wsrep_
status
)
maria_declare_plugin
(
wsrep_
info
)
{
MYSQL_INFORMATION_SCHEMA_PLUGIN
,
&
wsrep_memb_plugin
,
...
...
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