Commit 32150d25 authored by Sergei Golubchik's avatar Sergei Golubchik

compilation warning on Windows

parent 802ce967
...@@ -4551,7 +4551,7 @@ innobase_rename_column_try( ...@@ -4551,7 +4551,7 @@ innobase_rename_column_try(
info = pars_info_create(); info = pars_info_create();
int pos = i; ulint pos = i;
if (has_prefixes) { if (has_prefixes) {
pos = (pos << 16) + field->prefix_len; pos = (pos << 16) + field->prefix_len;
} }
......
...@@ -4565,7 +4565,7 @@ innobase_rename_column_try( ...@@ -4565,7 +4565,7 @@ innobase_rename_column_try(
info = pars_info_create(); info = pars_info_create();
int pos = i; ulint pos = i;
if (has_prefixes) { if (has_prefixes) {
pos = (pos << 16) + field->prefix_len; pos = (pos << 16) + field->prefix_len;
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment