Commit fb7cec63 authored by marko's avatar marko

Correct the function comments of row_create_table_for_mysql() and

row_drop_table_for_mysql().
parent 055b323c
...@@ -319,9 +319,11 @@ row_mysql_unfreeze_data_dictionary( ...@@ -319,9 +319,11 @@ row_mysql_unfreeze_data_dictionary(
/*===============================*/ /*===============================*/
trx_t* trx); /* in: transaction */ trx_t* trx); /* in: transaction */
/************************************************************************* /*************************************************************************
Does a table creation operation for MySQL. If the name of the created Drops a table for MySQL. If the name of the table ends in
table ends to characters INNODB_MONITOR, then this also starts one of "innodb_monitor", "innodb_lock_monitor", "innodb_tablespace_monitor",
printing of monitor output by the master thread. */ "innodb_table_monitor", then this will also start the printing of monitor
output by the master thread. If the table name ends in "innodb_mem_validate",
InnoDB will try to invoke mem_validate(). */
int int
row_create_table_for_mysql( row_create_table_for_mysql(
...@@ -399,8 +401,9 @@ row_truncate_table_for_mysql( ...@@ -399,8 +401,9 @@ row_truncate_table_for_mysql(
dict_table_t* table, /* in: table handle */ dict_table_t* table, /* in: table handle */
trx_t* trx); /* in: transaction handle */ trx_t* trx); /* in: transaction handle */
/************************************************************************* /*************************************************************************
Drops a table for MySQL. If the name of the dropped table ends to Drops a table for MySQL. If the name of the dropped table ends in
characters INNODB_MONITOR, then this also stops printing of monitor one of "innodb_monitor", "innodb_lock_monitor", "innodb_tablespace_monitor",
"innodb_table_monitor", then this will also stop the printing of monitor
output by the master thread. */ output by the master thread. */
int int
......
...@@ -1728,10 +1728,11 @@ row_mysql_unlock_data_dictionary( ...@@ -1728,10 +1728,11 @@ row_mysql_unlock_data_dictionary(
} }
/************************************************************************* /*************************************************************************
Does a table creation operation for MySQL. If the name of the table Drops a table for MySQL. If the name of the table ends in
to be created is equal with one of the predefined magic table names, one of "innodb_monitor", "innodb_lock_monitor", "innodb_tablespace_monitor",
then this also starts printing the corresponding monitor output by "innodb_table_monitor", then this will also start the printing of monitor
the master thread. */ output by the master thread. If the table name ends in "innodb_mem_validate",
InnoDB will try to invoke mem_validate(). */
int int
row_create_table_for_mysql( row_create_table_for_mysql(
...@@ -2916,9 +2917,10 @@ row_truncate_table_for_mysql( ...@@ -2916,9 +2917,10 @@ row_truncate_table_for_mysql(
#endif /* !UNIV_HOTBACKUP */ #endif /* !UNIV_HOTBACKUP */
/************************************************************************* /*************************************************************************
Drops a table for MySQL. If the name of the table to be dropped is equal Drops a table for MySQL. If the name of the dropped table ends in
with one of the predefined magic table names, then this also stops printing one of "innodb_monitor", "innodb_lock_monitor", "innodb_tablespace_monitor",
the corresponding monitor output by the master thread. */ "innodb_table_monitor", then this will also stop the printing of monitor
output by the master thread. */
int int
row_drop_table_for_mysql( row_drop_table_for_mysql(
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment