diff options
author | unknown <jonas@perch.ndb.mysql.com> | 2005-09-19 15:35:07 +0200 |
---|---|---|
committer | unknown <jonas@perch.ndb.mysql.com> | 2005-09-19 15:35:07 +0200 |
commit | b390a1a4000d15588162cddc445fb9663ae3c089 (patch) | |
tree | fe6285c964091b9461ed089a7bef0de93bb2d58b /sql/sql_yacc.yy | |
parent | 90e6060858c4db92af07e1624ee7347d2d95b0f4 (diff) | |
download | mariadb-git-b390a1a4000d15588162cddc445fb9663ae3c089.tar.gz |
ndb - imlp. show engine ndb status;
that dump free list allocation per connection
sql/ha_ndbcluster.cc:
imlp. show engine ndb status;
that dump free list allocation per connection
sql/ha_ndbcluster.h:
imlp. show engine ndb status;
that dump free list allocation per connection
sql/mysqld.cc:
imlp. show engine ndb status;
that dump free list allocation per connection
sql/sql_lex.h:
imlp. show engine ndb status;
that dump free list allocation per connection
sql/sql_parse.cc:
imlp. show engine ndb status;
that dump free list allocation per connection
sql/sql_yacc.yy:
imlp. show engine ndb status;
that dump free list allocation per connection
Diffstat (limited to 'sql/sql_yacc.yy')
-rw-r--r-- | sql/sql_yacc.yy | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/sql/sql_yacc.yy b/sql/sql_yacc.yy index 6283cad7cc8..57a06943454 100644 --- a/sql/sql_yacc.yy +++ b/sql/sql_yacc.yy @@ -4533,6 +4533,9 @@ show_engine_param: STATUS_SYM { switch (Lex->create_info.db_type) { + case DB_TYPE_NDBCLUSTER: + Lex->sql_command = SQLCOM_SHOW_NDBCLUSTER_STATUS; + break; case DB_TYPE_INNODB: Lex->sql_command = SQLCOM_SHOW_INNODB_STATUS; break; |