diff options
Diffstat (limited to 'sql/ha_heap.cc')
-rw-r--r-- | sql/ha_heap.cc | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sql/ha_heap.cc b/sql/ha_heap.cc index 62e6d0c47ee..9ebc5aecde2 100644 --- a/sql/ha_heap.cc +++ b/sql/ha_heap.cc @@ -129,7 +129,7 @@ handler *ha_heap::clone(MEM_ROOT *mem_root) handler *new_handler= get_new_handler(table, mem_root, table->s->db_type); if (new_handler && !new_handler->ha_open(file->s->name, table->db_stat, HA_OPEN_IGNORE_IF_LOCKED)) - return new_handler; + return new_handler; /* purecov: inspected */ return NULL; } |