diff options
author | unknown <sanja@montyprogram.com> | 2013-07-16 15:16:38 +0300 |
---|---|---|
committer | unknown <sanja@montyprogram.com> | 2013-07-16 15:16:38 +0300 |
commit | 69ca523810c21022c5d29d187fd1f55b84c302d4 (patch) | |
tree | 9716557ec6166a9d33d34b5f021831263f212336 /sql/sql_reload.cc | |
parent | c697aa1f7c2c95f42abc6c180dff94f33394e16f (diff) | |
download | mariadb-git-69ca523810c21022c5d29d187fd1f55b84c302d4.tar.gz |
MDEV-4547 [PATCH] Make REFRESH_* constants to be 64-bit in 32-bit compilation
REFRESH_FAST do not fit in 32 bit
Diffstat (limited to 'sql/sql_reload.cc')
-rw-r--r-- | sql/sql_reload.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/sql_reload.cc b/sql/sql_reload.cc index e9c9dc86e41..f430c1b3a5d 100644 --- a/sql/sql_reload.cc +++ b/sql/sql_reload.cc @@ -53,7 +53,7 @@ static void disable_checkpoints(THD *thd); @retval !=0 Error; thd->killed is set or thd->is_error() is true */ -bool reload_acl_and_cache(THD *thd, unsigned long options, +bool reload_acl_and_cache(THD *thd, unsigned long long options, TABLE_LIST *tables, int *write_to_binlog) { bool result=0; |