Commit c53cd1c0 authored by Gleb Shchepa's avatar Gleb Shchepa

gcc warnings removal (after bugfix for bug 36569)

parent 8f521b41
...@@ -9644,7 +9644,7 @@ test_if_equality_guarantees_uniqueness(Item *l, Item *r) ...@@ -9644,7 +9644,7 @@ test_if_equality_guarantees_uniqueness(Item *l, Item *r)
static bool equal(Item *i1, Item *i2, Field *f2) static bool equal(Item *i1, Item *i2, Field *f2)
{ {
DBUG_ASSERT(i2 == NULL ^ f2 == NULL); DBUG_ASSERT((i2 == NULL) ^ (f2 == NULL));
if (i2 != NULL) if (i2 != NULL)
return i1->eq(i2, 1); return i1->eq(i2, 1);
...@@ -9674,7 +9674,7 @@ bool ...@@ -9674,7 +9674,7 @@ bool
const_expression_in_where(COND *cond, Item *comp_item, Field *comp_field, const_expression_in_where(COND *cond, Item *comp_item, Field *comp_field,
Item **const_item) Item **const_item)
{ {
DBUG_ASSERT(comp_item == NULL ^ comp_field == NULL); DBUG_ASSERT((comp_item == NULL) ^ (comp_field == NULL));
Item *intermediate= NULL; Item *intermediate= NULL;
if (const_item == NULL) if (const_item == NULL)
......
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