Skip to content

Commit

Permalink
Fix DBUG_PRINT formatting for ulonglong alter_info.flags
Browse files Browse the repository at this point in the history
  • Loading branch information
vaintroub committed Feb 15, 2018
1 parent 633d252 commit 990289a
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions storage/spider/ha_spider.cc
Original file line number Diff line number Diff line change
Expand Up @@ -11263,7 +11263,7 @@ int ha_spider::create(
trx->tmp_flg = TRUE;

DBUG_PRINT("info",
("spider alter_info.flags=%u", thd->lex->alter_info.flags));
("spider alter_info.flags=%llu", thd->lex->alter_info.flags));
if (
(thd->lex->alter_info.flags &
(
Expand Down Expand Up @@ -11459,7 +11459,7 @@ int ha_spider::rename_table(
}

DBUG_PRINT("info",
("spider alter_info.flags=%u", thd->lex->alter_info.flags));
("spider alter_info.flags=%llu", thd->lex->alter_info.flags));
if (
(thd->lex->alter_info.flags &
(
Expand Down Expand Up @@ -11654,7 +11654,7 @@ int ha_spider::delete_table(
DBUG_RETURN(0);

DBUG_PRINT("info",
("spider alter_info.flags=%u", thd->lex->alter_info.flags));
("spider alter_info.flags=%llu", thd->lex->alter_info.flags));
if (
sql_command == SQLCOM_ALTER_TABLE &&
(thd->lex->alter_info.flags &
Expand Down

0 comments on commit 990289a

Please sign in to comment.