mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 03:51:50 +01:00
branches/zip: Replace a DBUG_ASSERT with ut_a to track down Issue #290.
This commit is contained in:
parent
73823ce1d2
commit
943c28d5a8
1 changed files with 1 additions and 1 deletions
|
@ -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 */
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue