summaryrefslogtreecommitdiff
path: root/plugin/wsrep_info
diff options
context:
space:
mode:
Diffstat (limited to 'plugin/wsrep_info')
-rw-r--r--plugin/wsrep_info/mysql-test/wsrep_info/r/plugin.result4
-rw-r--r--plugin/wsrep_info/plugin.cc14
2 files changed, 11 insertions, 7 deletions
diff --git a/plugin/wsrep_info/mysql-test/wsrep_info/r/plugin.result b/plugin/wsrep_info/mysql-test/wsrep_info/r/plugin.result
index 31d66ab8b34..f33a628d428 100644
--- a/plugin/wsrep_info/mysql-test/wsrep_info/r/plugin.result
+++ b/plugin/wsrep_info/mysql-test/wsrep_info/r/plugin.result
@@ -1,4 +1,5 @@
# On node 1
+connection node_1;
SELECT * FROM INFORMATION_SCHEMA.WSREP_STATUS;
NODE_INDEX NODE_STATUS CLUSTER_STATUS CLUSTER_SIZE CLUSTER_STATE_UUID CLUSTER_STATE_SEQNO CLUSTER_CONF_ID GAP PROTOCOL_VERSION
<IDX> Synced Primary 2 <CLUSTER_STATE_UUID> 0 <CLUSTER_CONF_ID> NO 3
@@ -7,6 +8,7 @@ INDEX UUID NAME ADDRESS
<IDX> <MEMBER_ID> test-node-1 <ADDRESS>
<IDX> <MEMBER_ID> test-node-2 <ADDRESS>
# On node 2
+connection node_2;
SELECT * FROM INFORMATION_SCHEMA.WSREP_STATUS;
NODE_INDEX NODE_STATUS CLUSTER_STATUS CLUSTER_SIZE CLUSTER_STATE_UUID CLUSTER_STATE_SEQNO CLUSTER_CONF_ID GAP PROTOCOL_VERSION
<IDX> Synced Primary 2 <CLUSTER_STATE_UUID> 0 <CLUSTER_CONF_ID> YES 3
@@ -14,4 +16,6 @@ SELECT * FROM INFORMATION_SCHEMA.WSREP_MEMBERSHIP ORDER BY NAME;
INDEX UUID NAME ADDRESS
<IDX> <MEMBER_ID> test-node-1 <ADDRESS>
<IDX> <MEMBER_ID> test-node-2 <ADDRESS>
+disconnect node_2;
+disconnect node_1;
# End of test
diff --git a/plugin/wsrep_info/plugin.cc b/plugin/wsrep_info/plugin.cc
index a4362f0072e..ed502d30f88 100644
--- a/plugin/wsrep_info/plugin.cc
+++ b/plugin/wsrep_info/plugin.cc
@@ -120,10 +120,10 @@ static int wsrep_memb_fill_table(THD *thd, TABLE_LIST *tables, COND *cond)
if (check_global_access(thd, SUPER_ACL, true))
return rc;
- wsrep_config_state.lock();
+ wsrep_config_state->lock();
Dynamic_array<wsrep_member_info_t> *memb_arr=
- wsrep_config_state.get_member_info();
+ wsrep_config_state->get_member_info();
TABLE *table= tables->table;
@@ -151,7 +151,7 @@ static int wsrep_memb_fill_table(THD *thd, TABLE_LIST *tables, COND *cond)
}
end:
- wsrep_config_state.unlock();
+ wsrep_config_state->unlock();
return rc;
}
@@ -175,10 +175,10 @@ static int wsrep_status_fill_table(THD *thd, TABLE_LIST *tables, COND *cond)
if (check_global_access(thd, SUPER_ACL, true))
return rc;
- wsrep_config_state.lock();
+ wsrep_config_state->lock();
- wsrep_view_info_t view= wsrep_config_state.get_view_info();
- wsrep_member_status_t status= wsrep_config_state.get_status();
+ wsrep_view_info_t view= wsrep_config_state->get_view_info();
+ wsrep_member_status_t status= wsrep_config_state->get_status();
TABLE *table= tables->table;
@@ -210,7 +210,7 @@ static int wsrep_status_fill_table(THD *thd, TABLE_LIST *tables, COND *cond)
if (schema_table_store_record(thd, table))
rc= 1;
- wsrep_config_state.unlock();
+ wsrep_config_state->unlock();
return rc;
}