From: Date: October 30 2006 3:59pm Subject: bk commit into 5.0 tree (msvensson:1.2333) BUG#22958 List-Archive: http://lists.mysql.com/commits/14563 X-Bug: 22958 Message-Id: <20061030145954.16F498601BA@shellback.localdomain> Below is the list of changes that have just been committed into a local 5.0 repository of msvensson. When msvensson does a push these changes will be propagated to the main repository and, within 24 hours after the push, to the public repository. For information on how to access the public repository see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html ChangeSet@stripped, 2006-10-30 15:59:47+01:00, msvensson@shellback.(none) +1 -0 Bug#22958 Com_create_user missing within 5.0 - Add Com_create_user to SHOW STATUS command sql/mysqld.cc@stripped, 2006-10-30 15:59:45+01:00, msvensson@shellback.(none) +1 -0 Add Com_create_user to the status variables list, it's already counted with the default mechanism # This is a BitKeeper patch. What follows are the unified diffs for the # set of deltas contained in the patch. The rest of the patch, the part # that BitKeeper cares about, is below these diffs. # User: msvensson # Host: shellback.(none) # Root: /home/msvensson/mysql/bug22958/my50-bug22958 --- 1.577/sql/mysqld.cc 2006-10-30 15:59:53 +01:00 +++ 1.578/sql/mysqld.cc 2006-10-30 15:59:53 +01:00 @@ -6023,6 +6023,7 @@ {"Com_create_function", (char*) offsetof(STATUS_VAR, com_stat[(uint) SQLCOM_CREATE_FUNCTION]), SHOW_LONG_STATUS}, {"Com_create_index", (char*) offsetof(STATUS_VAR, com_stat[(uint) SQLCOM_CREATE_INDEX]), SHOW_LONG_STATUS}, {"Com_create_table", (char*) offsetof(STATUS_VAR, com_stat[(uint) SQLCOM_CREATE_TABLE]), SHOW_LONG_STATUS}, + {"Com_create_user", (char*) offsetof(STATUS_VAR, com_stat[(uint) SQLCOM_CREATE_USER]), SHOW_LONG_STATUS}, {"Com_dealloc_sql", (char*) offsetof(STATUS_VAR, com_stat[(uint) SQLCOM_DEALLOCATE_PREPARE]), SHOW_LONG_STATUS}, {"Com_delete", (char*) offsetof(STATUS_VAR, com_stat[(uint) SQLCOM_DELETE]), SHOW_LONG_STATUS}, {"Com_delete_multi", (char*) offsetof(STATUS_VAR, com_stat[(uint) SQLCOM_DELETE_MULTI]), SHOW_LONG_STATUS},