summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVladislav Vaintroub <wlad@montyprogram.com>2011-05-03 12:50:09 +0200
committerVladislav Vaintroub <wlad@montyprogram.com>2011-05-03 12:50:09 +0200
commitb46f14352b560a4fa6525e3bb1fd2bdfb2cbee7c (patch)
treeadc03afb2af6634b4d98735a06b55fa6bd820a8b
parente6926b06da6406b36c0e6bf4ec8151cd0237151f (diff)
downloadmariadb-git-b46f14352b560a4fa6525e3bb1fd2bdfb2cbee7c.tar.gz
Fix Xtradb compile error on Win64 - conversion between pointers of different size
-rw-r--r--storage/xtradb/handler/ha_innodb.cc2
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",