mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-28 02:21:59 +00:00
49 lines
930 B
C++
49 lines
930 B
C++
#include <Common/KnownObjectNames.h>
|
|
#include <Poco/String.h>
|
|
|
|
|
|
namespace DB
|
|
{
|
|
|
|
bool KnownObjectNames::exists(const String & name) const
|
|
{
|
|
std::lock_guard lock{mutex};
|
|
if (names.contains(name))
|
|
return true;
|
|
|
|
if (!case_insensitive_names.empty())
|
|
{
|
|
String lower_name = Poco::toLower(name);
|
|
if (case_insensitive_names.contains(lower_name))
|
|
return true;
|
|
}
|
|
|
|
return false;
|
|
}
|
|
|
|
|
|
void KnownObjectNames::add(const String & name, bool case_insensitive)
|
|
{
|
|
std::lock_guard lock{mutex};
|
|
if (case_insensitive)
|
|
case_insensitive_names.emplace(Poco::toLower(name));
|
|
else
|
|
names.emplace(name);
|
|
}
|
|
|
|
|
|
KnownTableFunctionNames & KnownTableFunctionNames::instance()
|
|
{
|
|
static KnownTableFunctionNames the_instance;
|
|
return the_instance;
|
|
}
|
|
|
|
|
|
KnownFormatNames & KnownFormatNames::instance()
|
|
{
|
|
static KnownFormatNames the_instance;
|
|
return the_instance;
|
|
}
|
|
|
|
}
|