Commit 7e381404 authored by mats@mysql.com's avatar mats@mysql.com

Bug#19995 (Extreneous table maps generated for statements that does not generate rows):

Comment change.
parent 4092292c
...@@ -3199,16 +3199,27 @@ namespace { ...@@ -3199,16 +3199,27 @@ namespace {
} }
} }
/** /*
Write table maps for all (manually or automatically) locked tables Write table maps for all (manually or automatically) locked tables
to the binary log. to the binary log.
This function will generate and write table maps for all tables SYNOPSIS
that are locked by the thread 'thd'. Either manually locked write_locked_table_maps()
(stored in THD::locked_tables) and automatically locked (stored in thd Pointer to THD structure
THD::lock) are considered.
DESCRIPTION
This function will generate and write table maps for all tables
that are locked by the thread 'thd'. Either manually locked
(stored in THD::locked_tables) and automatically locked (stored
in THD::lock) are considered.
See THD::lock and THD::locked_tables for more information. RETURN VALUE
0 All OK
1 Failed to write all table maps
SEE ALSO
THD::lock
THD::locked_tables
*/ */
static int static int
write_locked_table_maps(THD *thd) write_locked_table_maps(THD *thd)
......
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