Add missing OnConfigLoaded calls in Ido{My,Pg}sqlConnection

fixes #11951
This commit is contained in:
Gunnar Beutner 2016-06-16 14:21:29 +02:00
parent c99fb68c2d
commit d415ff7373
2 changed files with 4 additions and 0 deletions

View File

@ -44,6 +44,8 @@ IdoMysqlConnection::IdoMysqlConnection(void)
void IdoMysqlConnection::OnConfigLoaded(void)
{
ObjectImpl<IdoMysqlConnection>::OnConfigLoaded();
m_QueryQueue.SetName("IdoMysqlConnection, " + GetName());
}

View File

@ -48,6 +48,8 @@ IdoPgsqlConnection::IdoPgsqlConnection(void)
void IdoPgsqlConnection::OnConfigLoaded(void)
{
ObjectImpl<IdoPgsqlConnection>::OnConfigLoaded();
m_QueryQueue.SetName("IdoPgsqlConnection, " + GetName());
}