1
0
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:
bell@sanja.is.com.ua
2002-11-14 09:43:24 +02:00
parent b724f02cd4
commit 979f27ee4a
7 changed files with 36 additions and 6 deletions

View File

@@ -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
*****************************************************************************/