mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
fix a comment
This commit is contained in:
@ -869,13 +869,13 @@ private:
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
The number of rows affected by the last statement. This is
|
The number of rows affected by the last statement. This is
|
||||||
semantically close to thd->row_count_func, but has a different
|
semantically close to thd->m_row_count_func, but has a different
|
||||||
life cycle. thd->row_count_func stores the value returned by
|
life cycle. thd->m_row_count_func stores the value returned by
|
||||||
function ROW_COUNT() and is cleared only by statements that
|
function ROW_COUNT() and is cleared only by statements that
|
||||||
update its value, such as INSERT, UPDATE, DELETE and few others.
|
update its value, such as INSERT, UPDATE, DELETE and few others.
|
||||||
This member is cleared at the beginning of the next statement.
|
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.
|
can not be changed.
|
||||||
*/
|
*/
|
||||||
ulonglong m_affected_rows;
|
ulonglong m_affected_rows;
|
||||||
|
Reference in New Issue
Block a user