Commit 943c28d5 authored by marko's avatar marko

branches/zip: Replace a DBUG_ASSERT with ut_a to track down Issue #290.

parent 73823ce1
......@@ -6247,7 +6247,7 @@ ha_innobase::create(
/* Our function row_get_mysql_key_number_for_index assumes
the primary key is always number 0, if it exists */
DBUG_ASSERT(primary_key_no == -1 || primary_key_no == 0);
ut_a(primary_key_no == -1 || primary_key_no == 0);
/* Create the keys */
......
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