summaryrefslogtreecommitdiff
path: root/sql/sql_error.h
diff options
context:
space:
mode:
authorSergei Golubchik <serg@mariadb.org>2014-11-29 19:49:42 +0100
committerSergei Golubchik <serg@mariadb.org>2014-12-04 10:41:53 +0100
commit23fa0a367bcdc0d07dde1c5c397c42d2d40a9169 (patch)
tree96050db5f15a02071ac8640c4ec8f67bfb8fca26 /sql/sql_error.h
parentfc40f81edaee5d01dbaf6a3499147bde70bf01e8 (diff)
downloadmariadb-git-23fa0a367bcdc0d07dde1c5c397c42d2d40a9169.tar.gz
fix a comment
Diffstat (limited to 'sql/sql_error.h')
-rw-r--r--sql/sql_error.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/sql/sql_error.h b/sql/sql_error.h
index a993e9203c9..7308a574e1d 100644
--- a/sql/sql_error.h
+++ b/sql/sql_error.h
@@ -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;