Merge pull request #56546 from ClickHouse/remove-1

Remove useless using
This commit is contained in:
Alexey Milovidov 2023-11-10 16:56:56 +01:00 committed by GitHub
commit 9317357873
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
4 changed files with 0 additions and 6 deletions

View File

@ -143,7 +143,6 @@ namespace
void registerAggregateFunctionUniqCombined(AggregateFunctionFactory & factory)
{
using namespace std::placeholders;
factory.registerFunction("uniqCombined",
[](const std::string & name, const DataTypes & argument_types, const Array & parameters, const Settings *)
{

View File

@ -293,7 +293,6 @@ ReplxxLineReader::ReplxxLineReader(
, word_break_characters(word_break_characters_)
, editor(getEditor())
{
using namespace std::placeholders;
using Replxx = replxx::Replxx;
if (!history_file_path.empty())

View File

@ -900,8 +900,6 @@ void registerDictionaryArrayHashed(DictionaryFactory & factory)
return std::make_unique<HashedArrayDictionary<DictionaryKeyType::Complex>>(dict_id, dict_struct, std::move(source_ptr), configuration);
};
using namespace std::placeholders;
factory.registerLayout("hashed_array",
[=](auto && a, auto && b, auto && c, auto && d, DictionarySourcePtr e, ContextPtr global_context, bool /*created_from_ddl*/)
{

View File

@ -1246,8 +1246,6 @@ void registerDictionaryHashed(DictionaryFactory & factory)
}
};
using namespace std::placeholders;
factory.registerLayout("hashed",
[=](auto && a, auto && b, auto && c, auto && d, DictionarySourcePtr e, ContextPtr global_context, bool /*created_from_ddl*/){ return create_layout(a, b, c, d, std::move(e), global_context, DictionaryKeyType::Simple, /* sparse = */ false); }, false);
factory.registerLayout("sparse_hashed",