This commit is contained in:
Raúl Marín 2022-08-10 21:53:11 +02:00
parent 32c63f43a1
commit ce9c0c2da3

View File

@ -163,6 +163,6 @@ std::vector<std::string> UserDefinedSQLFunctionFactory::getAllRegisteredNames()
bool UserDefinedSQLFunctionFactory::empty() const
{
std::lock_guard lock(mutex);
return function_name_to_create_query.size() == 0;
return function_name_to_create_query.empty();
}
}