mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
fixed bug in cyclic reference refinition
This commit is contained in:
@@ -434,6 +434,15 @@ void THD::close_active_vio()
|
||||
}
|
||||
#endif
|
||||
|
||||
void THD::add_possible_loop (Item *item)
|
||||
{
|
||||
if (!possible_loops)
|
||||
{
|
||||
possible_loops= new List<Item>;
|
||||
}
|
||||
possible_loops->push_back(item);
|
||||
}
|
||||
|
||||
/*****************************************************************************
|
||||
** Functions to provide a interface to select results
|
||||
*****************************************************************************/
|
||||
|
||||
Reference in New Issue
Block a user