1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-27 18:02:13 +03:00

fix a comment

This commit is contained in:
Sergei Golubchik
2014-11-29 19:49:42 +01:00
parent fc40f81eda
commit 23fa0a367b

View File

@ -869,13 +869,13 @@ private:
/**
The number of rows affected by the last statement. This is
semantically close to thd->row_count_func, but has a different
life cycle. thd->row_count_func stores the value returned by
semantically close to thd->m_row_count_func, but has a different
life cycle. thd->m_row_count_func stores the value returned by
function ROW_COUNT() and is cleared only by statements that
update its value, such as INSERT, UPDATE, DELETE and few others.
This member is cleared at the beginning of the next statement.
We could possibly merge the two, but life cycle of thd->row_count_func
We could possibly merge the two, but life cycle of thd->m_row_count_func
can not be changed.
*/
ulonglong m_affected_rows;