1
0
mirror of https://github.com/anope/anope.git synced 2026-06-25 03:46:36 +02:00

db_sql: run table creation queries during import synchronously too

This commit is contained in:
Adam
2017-01-08 17:03:54 -05:00
parent a4f7d847ab
commit 074bde5ccc
+9 -3
View File
@@ -123,14 +123,20 @@ class DBSQL : public Module, public Pipe
continue;
std::vector<Query> create = this->sql->CreateTable(this->prefix + s_type->GetName(), data);
for (unsigned i = 0; i < create.size(); ++i)
this->RunBackground(create[i]);
Query insert = this->sql->BuildInsert(this->prefix + s_type->GetName(), obj->id, data);
if (this->imported)
{
for (unsigned i = 0; i < create.size(); ++i)
this->RunBackground(create[i]);
this->RunBackground(insert, new ResultSQLSQLInterface(this, obj));
}
else
{
for (unsigned i = 0; i < create.size(); ++i)
this->sql->RunQuery(create[i]);
/* We are importing objects from another database module, so don't do asynchronous
* queries in case the core has to shut down, it will cut short the import
*/