diff options
author | marko@hundin.mysql.fi <> | 2004-03-13 22:48:00 +0200 |
---|---|---|
committer | marko@hundin.mysql.fi <> | 2004-03-13 22:48:00 +0200 |
commit | 9ed26f721dc5c0fcf10166dbae0463f0a5489d1c (patch) | |
tree | 61f1cdfa1fd7e1a5d6d8c6925730b71cec1f2e9d /innobase/row/row0row.c | |
parent | 9eede1c6bcb2736e9369286eb71682ebcdad9ceb (diff) | |
download | mariadb-git-9ed26f721dc5c0fcf10166dbae0463f0a5489d1c.tar.gz |
InnoDB: Replace ut_a(0) with ut_error
Diffstat (limited to 'innobase/row/row0row.c')
-rw-r--r-- | innobase/row/row0row.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/innobase/row/row0row.c b/innobase/row/row0row.c index b5d676a936a..6820cb5bccd 100644 --- a/innobase/row/row0row.c +++ b/innobase/row/row0row.c @@ -406,7 +406,7 @@ row_build_row_ref_in_tuple( if (!table) { fprintf(stderr, "InnoDB: table %s for index %s not found\n", index->table_name, index->name); - ut_a(0); + ut_error; } clust_index = dict_table_get_first_index(table); @@ -415,7 +415,7 @@ row_build_row_ref_in_tuple( fprintf(stderr, "InnoDB: clust index for table %s for index %s not found\n", index->table_name, index->name); - ut_a(0); + ut_error; } ref_len = dict_index_get_n_unique(clust_index); |