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

MDEV-4547 [PATCH] Make REFRESH_* constants to be 64-bit in 32-bit compilation

REFRESH_FAST do not fit in 32 bit
This commit is contained in:
unknown
2013-07-16 15:16:38 +03:00
parent c697aa1f7c
commit 69ca523810
5 changed files with 29 additions and 29 deletions

View File

@ -1489,7 +1489,7 @@ bool dispatch_command(enum enum_server_command command, THD *thd,
lex_start(thd);
status_var_increment(thd->status_var.com_stat[SQLCOM_FLUSH]);
ulong options= (ulong) (uchar) packet[0];
ulonglong options= (ulonglong) (uchar) packet[0];
if (trans_commit_implicit(thd))
break;
thd->mdl_context.release_transactional_locks();