diff options
author | click <none@none> | 2010-12-13 22:37:56 +0100 |
---|---|---|
committer | click <none@none> | 2010-12-13 22:37:56 +0100 |
commit | 26428943423d14e8672682ab1f19925b76c2aa35 (patch) | |
tree | 1c6d80c03cbf566879e5c899533a2dea5a73dd4c /src/server/shared/Database/MySQLConnection.cpp | |
parent | 89a33bbf612fcd0d5cea8e1fc5deff87e53aa67e (diff) |
Core: Add new system for parallelizing client packet processing. Handle WorldSession updates in Map::Update() where we are safe to proceed. Patch by Ambal.
(And clean up tabs and whitespace while rummaging around in there)
Closes issue 5084.
--HG--
branch : trunk
Diffstat (limited to 'src/server/shared/Database/MySQLConnection.cpp')
-rwxr-xr-x | src/server/shared/Database/MySQLConnection.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/server/shared/Database/MySQLConnection.cpp b/src/server/shared/Database/MySQLConnection.cpp index 20c614b5333..84d1948622e 100755 --- a/src/server/shared/Database/MySQLConnection.cpp +++ b/src/server/shared/Database/MySQLConnection.cpp @@ -210,11 +210,11 @@ bool MySQLConnection::Execute(PreparedStatement* stmt) m_mStmt->ClearParameters(); return false; } - + if (sLog.GetSQLDriverQueryLogging()) sLog.outSQLDriver("[%u ms] Prepared SQL: %u on database `%s`", getMSTimeDiff(_s, getMSTime()), index, m_connectionInfo.database.c_str()); - + m_mStmt->ClearParameters(); return true; } |