Commit b197e22d authored by sergefp@mysql.com's avatar sergefp@mysql.com

Change DBUG_ASSERT(1) to DBUG_ASSERT(0)

parent aef3ead4
...@@ -452,10 +452,10 @@ uint bitmap_get_first_set(const MY_BITMAP *map) ...@@ -452,10 +452,10 @@ uint bitmap_get_first_set(const MY_BITMAP *map)
return bit_found; return bit_found;
} }
} }
DBUG_ASSERT(1); DBUG_ASSERT(0);
} }
} }
DBUG_ASSERT(1); DBUG_ASSERT(0);
} }
} }
return MY_BIT_NONE; return MY_BIT_NONE;
...@@ -489,10 +489,10 @@ uint bitmap_get_first(const MY_BITMAP *map) ...@@ -489,10 +489,10 @@ uint bitmap_get_first(const MY_BITMAP *map)
return bit_found; return bit_found;
} }
} }
DBUG_ASSERT(1); DBUG_ASSERT(0);
} }
} }
DBUG_ASSERT(1); DBUG_ASSERT(0);
} }
} }
return MY_BIT_NONE; return MY_BIT_NONE;
......
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