mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 04:53:01 +01:00
Comment on handler::unlock_row()
This commit is contained in:
parent
c93ff40c51
commit
5e360685c1
1 changed files with 8 additions and 0 deletions
|
@ -5762,7 +5762,15 @@ sub_select(JOIN *join,JOIN_TAB *join_tab,bool end_of_records)
|
|||
return 0;
|
||||
}
|
||||
else
|
||||
{
|
||||
/*
|
||||
This row failed selection, release lock on it.
|
||||
XXX: There is no table handler in MySQL which makes use of this
|
||||
call. It's kept from Gemini times. A lot of new code was added
|
||||
recently (i. e. subselects) without having it in mind.
|
||||
*/
|
||||
info->file->unlock_row();
|
||||
}
|
||||
}
|
||||
} while (!(error=info->read_record(info)) && !(*report_error));
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue