Commit 98f29b3f authored by unknown's avatar unknown

separated an assertion from the assignment (bug 30468)

parent cadf9e16
...@@ -3888,7 +3888,8 @@ bool check_grant_all_columns(THD *thd, ulong want_access_arg, ...@@ -3888,7 +3888,8 @@ bool check_grant_all_columns(THD *thd, ulong want_access_arg,
grant->version= grant_version; /* purecov: inspected */ grant->version= grant_version; /* purecov: inspected */
} }
DBUG_ASSERT ((grant_table= grant->grant_table) != NULL); grant_table= grant->grant_table;
DBUG_ASSERT (grant_table);
} }
} }
......
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