Skip to content

Commit 23fa0a3

Browse files
committed
fix a comment
1 parent fc40f81 commit 23fa0a3

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

sql/sql_error.h

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -869,13 +869,13 @@ class Diagnostics_area
869869

870870
/**
871871
The number of rows affected by the last statement. This is
872-
semantically close to thd->row_count_func, but has a different
873-
life cycle. thd->row_count_func stores the value returned by
872+
semantically close to thd->m_row_count_func, but has a different
873+
life cycle. thd->m_row_count_func stores the value returned by
874874
function ROW_COUNT() and is cleared only by statements that
875875
update its value, such as INSERT, UPDATE, DELETE and few others.
876876
This member is cleared at the beginning of the next statement.
877877
878-
We could possibly merge the two, but life cycle of thd->row_count_func
878+
We could possibly merge the two, but life cycle of thd->m_row_count_func
879879
can not be changed.
880880
*/
881881
ulonglong m_affected_rows;

0 commit comments

Comments
 (0)