Commit 990289a7 authored by Vladislav Vaintroub's avatar Vladislav Vaintroub

Fix DBUG_PRINT formatting for ulonglong alter_info.flags

parent 633d252e
...@@ -11263,7 +11263,7 @@ int ha_spider::create( ...@@ -11263,7 +11263,7 @@ int ha_spider::create(
trx->tmp_flg = TRUE; trx->tmp_flg = TRUE;
DBUG_PRINT("info", DBUG_PRINT("info",
("spider alter_info.flags=%u", thd->lex->alter_info.flags)); ("spider alter_info.flags=%llu", thd->lex->alter_info.flags));
if ( if (
(thd->lex->alter_info.flags & (thd->lex->alter_info.flags &
( (
...@@ -11459,7 +11459,7 @@ int ha_spider::rename_table( ...@@ -11459,7 +11459,7 @@ int ha_spider::rename_table(
} }
DBUG_PRINT("info", DBUG_PRINT("info",
("spider alter_info.flags=%u", thd->lex->alter_info.flags)); ("spider alter_info.flags=%llu", thd->lex->alter_info.flags));
if ( if (
(thd->lex->alter_info.flags & (thd->lex->alter_info.flags &
( (
...@@ -11654,7 +11654,7 @@ int ha_spider::delete_table( ...@@ -11654,7 +11654,7 @@ int ha_spider::delete_table(
DBUG_RETURN(0); DBUG_RETURN(0);
DBUG_PRINT("info", DBUG_PRINT("info",
("spider alter_info.flags=%u", thd->lex->alter_info.flags)); ("spider alter_info.flags=%llu", thd->lex->alter_info.flags));
if ( if (
sql_command == SQLCOM_ALTER_TABLE && sql_command == SQLCOM_ALTER_TABLE &&
(thd->lex->alter_info.flags & (thd->lex->alter_info.flags &
......
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