diff options
author | tsmith@ramayana.hindu.god <> | 2008-04-30 19:14:41 -0600 |
---|---|---|
committer | tsmith@ramayana.hindu.god <> | 2008-04-30 19:14:41 -0600 |
commit | 5fa0982adb3f30a7af529586ce175f08d236bdcb (patch) | |
tree | 893f793818822f9d22378a1f9ed849c9d31f9f84 /libmysqld | |
parent | 7f00fb606abd97661927b050f5342dcdc837a5dc (diff) | |
download | mariadb-git-5fa0982adb3f30a7af529586ce175f08d236bdcb.tar.gz |
Use ulonglong to store row count in libmysld Protocol_text::remove_last_row()
(fix warnings).
Diffstat (limited to 'libmysqld')
-rw-r--r-- | libmysqld/lib_sql.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/libmysqld/lib_sql.cc b/libmysqld/lib_sql.cc index 0f0fb2c1bda..6dfecdb2f5c 100644 --- a/libmysqld/lib_sql.cc +++ b/libmysqld/lib_sql.cc @@ -848,7 +848,7 @@ void Protocol_text::remove_last_row() { MYSQL_DATA *data= thd->cur_data; MYSQL_ROWS **last_row_hook= &data->data; - uint count= data->rows; + my_ulonglong count= data->rows; DBUG_ENTER("Protocol_text::remove_last_row"); while (--count) last_row_hook= &(*last_row_hook)->next; |