style fix

This commit is contained in:
Arthur Passos 2024-06-14 10:02:40 -03:00
parent b22776d3a8
commit 98e5ea5206
2 changed files with 3 additions and 1 deletions

View File

@ -16,7 +16,7 @@ namespace DB
namespace ErrorCodes
{
extern const int NOT_IMPLEMENTED;
extern const int SUPPORT_IS_DISABLED;
extern const int LOGICAL_ERROR;
}
namespace
@ -256,6 +256,7 @@ bool Authentication::areCredentialsValid(
// below code sucks, but works for now I guess.
// might be a problem if no auth method has been registered
std::string possible_authentication_types;
bool first = true;

View File

@ -207,6 +207,7 @@ void SessionLogElement::appendToBlock(MutableColumns & columns) const
columns[i++]->insertData(auth_failure_reason.data(), auth_failure_reason.length());
}
// todo arthur fix this method
void SessionLog::addLoginSuccess(const UUID & auth_id,
const String & session_id,
const Settings & settings,