diff options
author | Vladislav Vaintroub <wlad@montyprogram.com> | 2011-05-03 12:50:09 +0200 |
---|---|---|
committer | Vladislav Vaintroub <wlad@montyprogram.com> | 2011-05-03 12:50:09 +0200 |
commit | b46f14352b560a4fa6525e3bb1fd2bdfb2cbee7c (patch) | |
tree | adc03afb2af6634b4d98735a06b55fa6bd820a8b | |
parent | e6926b06da6406b36c0e6bf4ec8151cd0237151f (diff) | |
download | mariadb-git-b46f14352b560a4fa6525e3bb1fd2bdfb2cbee7c.tar.gz |
Fix Xtradb compile error on Win64 - conversion between pointers of different size
-rw-r--r-- | storage/xtradb/handler/ha_innodb.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/storage/xtradb/handler/ha_innodb.cc b/storage/xtradb/handler/ha_innodb.cc index 1daea3cd070..b8784afe9d6 100644 --- a/storage/xtradb/handler/ha_innodb.cc +++ b/storage/xtradb/handler/ha_innodb.cc @@ -11783,7 +11783,7 @@ static MYSQL_SYSVAR_ULINT(pass_corrupt_table, srv_pass_corrupt_table, "except for the deletion.", NULL, NULL, 0, 0, 1, 0); -static MYSQL_SYSVAR_ULONG(lazy_drop_table, srv_lazy_drop_table, +static MYSQL_SYSVAR_ULINT(lazy_drop_table, srv_lazy_drop_table, PLUGIN_VAR_RQCMDARG, "At deleting tablespace, only miminum needed processes at the time are done. " "e.g. for http://bugs.mysql.com/51325", |