Skip to content
Permalink
Browse files
Fix GCC -Og -Wmaybe-uninitialized
This fixes up commit dd5f4b3
  • Loading branch information
dr-m committed Dec 12, 2022
1 parent c4d7939 commit cf437f6
Showing 1 changed file with 1 addition and 1 deletion.
@@ -2307,7 +2307,7 @@ void ha_maria::start_bulk_insert(ha_rows rows, uint flags)

int ha_maria::end_bulk_insert()
{
int first_error, first_errno, error;
int first_error, first_errno= 0, error;
my_bool abort= file->s->deleting, empty_table= 0;
uint enable_index_mode= HA_KEY_SWITCH_NONUNIQ_SAVE;
DBUG_ENTER("ha_maria::end_bulk_insert");

0 comments on commit cf437f6

Please sign in to comment.