Core/DBLayer: Add MySQL errno 1054 to ignored error messages.

This commit is contained in:
Machiavelli
2011-01-06 22:32:30 +01:00
parent 7ac9ffd587
commit afcff32e64

View File

@@ -463,6 +463,7 @@ bool MySQLConnection::_HandleMySQLErrno(uint32 errNo)
// Query related errors - skip query
case 1058: // "Column count doesn't match value count"
case 1062: // "Duplicate entry '%s' for key '%d'"
case 1054: // "Unknown column '%s' in 'order clause'"
return false;
default: