diff options
Diffstat (limited to 'sql/sql_show.cc')
-rw-r--r-- | sql/sql_show.cc | 7 |
1 files changed, 4 insertions, 3 deletions
diff --git a/sql/sql_show.cc b/sql/sql_show.cc index bd0b8926c6a..263f907f277 100644 --- a/sql/sql_show.cc +++ b/sql/sql_show.cc @@ -1615,10 +1615,11 @@ typedef struct st_index_field_values SYNOPSIS schema_table_store_record() thd thread handler - table I_S table + table Information schema table to be updated + RETURN - 1 error 0 success + 1 error */ static bool schema_table_store_record(THD *thd, TABLE *table) @@ -1959,7 +1960,7 @@ int get_all_tables(THD *thd, TABLE_LIST *tables, COND *cond) } } if (schema_table_store_record(thd, table)) - DBUG_RETURN(error); + goto err; } else { |