diff options
author | unknown <stewart@mysql.com> | 2006-06-26 23:31:10 +1000 |
---|---|---|
committer | unknown <stewart@mysql.com> | 2006-06-26 23:31:10 +1000 |
commit | 2ad33373d62c22d4fe22a104e5ac0ebaff0d0615 (patch) | |
tree | bc1032fb3c83b472e45d654d9ee815b88181fcf8 /sql/ha_ndbcluster.cc | |
parent | 0802a8a32921f57b5ad5366697b543e25f419443 (diff) | |
download | mariadb-git-2ad33373d62c22d4fe22a104e5ac0ebaff0d0615.tar.gz |
BUG#11459 ndb status variables not updated
change names of some undocumented ndb status variables to better reflect what
their values mean
sql/ha_ndbcluster.cc:
rename some status variables to better reflect what they show.
Diffstat (limited to 'sql/ha_ndbcluster.cc')
-rw-r--r-- | sql/ha_ndbcluster.cc | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/sql/ha_ndbcluster.cc b/sql/ha_ndbcluster.cc index 98dd9d5a122..9814e2c84b6 100644 --- a/sql/ha_ndbcluster.cc +++ b/sql/ha_ndbcluster.cc @@ -160,8 +160,8 @@ static int update_status_variables(Ndb_cluster_connection *c) struct show_var_st ndb_status_variables[]= { {"cluster_node_id", (char*) &ndb_cluster_node_id, SHOW_LONG}, - {"connected_host", (char*) &ndb_connected_host, SHOW_CHAR_PTR}, - {"connected_port", (char*) &ndb_connected_port, SHOW_LONG}, + {"config_from_host", (char*) &ndb_connected_host, SHOW_CHAR_PTR}, + {"config_from_port", (char*) &ndb_connected_port, SHOW_LONG}, // {"number_of_replicas", (char*) &ndb_number_of_replicas, SHOW_LONG}, {"number_of_storage_nodes",(char*) &ndb_number_of_storage_nodes, SHOW_LONG}, {NullS, NullS, SHOW_LONG} |