2021-05-17 07:30:42 +00:00
|
|
|
#include <Functions/IFunction.h>
|
2018-09-08 22:04:39 +00:00
|
|
|
#include <Functions/FunctionFactory.h>
|
|
|
|
#include <Functions/FunctionHelpers.h>
|
|
|
|
#include <Columns/ColumnString.h>
|
|
|
|
#include <Columns/ColumnConst.h>
|
|
|
|
#include <DataTypes/DataTypesNumber.h>
|
|
|
|
#include <Storages/IStorage.h>
|
|
|
|
#include <Interpreters/Cluster.h>
|
|
|
|
#include <Interpreters/Context.h>
|
|
|
|
#include <Storages/getStructureOfRemoteTable.h>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int NUMBER_OF_ARGUMENTS_DOESNT_MATCH;
|
|
|
|
extern const int ILLEGAL_TYPE_OF_ARGUMENT;
|
2020-06-24 16:37:04 +00:00
|
|
|
extern const int UNKNOWN_TABLE;
|
2018-09-08 22:04:39 +00:00
|
|
|
}
|
|
|
|
|
2020-09-07 18:00:37 +00:00
|
|
|
namespace
|
|
|
|
{
|
2018-09-08 22:04:39 +00:00
|
|
|
|
|
|
|
/** Usage:
|
|
|
|
* hasColumnInTable(['hostname'[, 'username'[, 'password']],] 'database', 'table', 'column')
|
|
|
|
*/
|
2021-06-01 12:20:52 +00:00
|
|
|
class FunctionHasColumnInTable : public IFunction, WithContext
|
2018-09-08 22:04:39 +00:00
|
|
|
{
|
|
|
|
public:
|
|
|
|
static constexpr auto name = "hasColumnInTable";
|
2021-06-01 12:20:52 +00:00
|
|
|
static FunctionPtr create(ContextPtr context_)
|
2018-09-08 22:04:39 +00:00
|
|
|
{
|
2021-04-10 23:33:54 +00:00
|
|
|
return std::make_shared<FunctionHasColumnInTable>(context_->getGlobalContext());
|
2018-09-08 22:04:39 +00:00
|
|
|
}
|
|
|
|
|
2021-06-01 12:20:52 +00:00
|
|
|
explicit FunctionHasColumnInTable(ContextPtr global_context_) : WithContext(global_context_)
|
2018-09-08 22:04:39 +00:00
|
|
|
{
|
|
|
|
}
|
|
|
|
|
|
|
|
bool isVariadic() const override
|
|
|
|
{
|
|
|
|
return true;
|
|
|
|
}
|
|
|
|
size_t getNumberOfArguments() const override
|
|
|
|
{
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
String getName() const override
|
|
|
|
{
|
|
|
|
return name;
|
|
|
|
}
|
|
|
|
|
|
|
|
DataTypePtr getReturnTypeImpl(const ColumnsWithTypeAndName & arguments) const override;
|
|
|
|
|
|
|
|
bool isDeterministic() const override { return false; }
|
|
|
|
|
2020-11-17 13:24:45 +00:00
|
|
|
ColumnPtr executeImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr &, size_t input_rows_count) const override;
|
2018-09-08 22:04:39 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
|
|
|
|
DataTypePtr FunctionHasColumnInTable::getReturnTypeImpl(const ColumnsWithTypeAndName & arguments) const
|
|
|
|
{
|
|
|
|
if (arguments.size() < 3 || arguments.size() > 6)
|
|
|
|
throw Exception{"Invalid number of arguments for function " + getName(),
|
|
|
|
ErrorCodes::NUMBER_OF_ARGUMENTS_DOESNT_MATCH};
|
|
|
|
|
|
|
|
static const std::string arg_pos_description[] = {"First", "Second", "Third", "Fourth", "Fifth", "Sixth"};
|
|
|
|
for (size_t i = 0; i < arguments.size(); ++i)
|
|
|
|
{
|
|
|
|
const ColumnWithTypeAndName & argument = arguments[i];
|
|
|
|
|
|
|
|
if (!checkColumnConst<ColumnString>(argument.column.get()))
|
|
|
|
{
|
|
|
|
throw Exception(arg_pos_description[i] + " argument for function " + getName() + " must be const String.",
|
|
|
|
ErrorCodes::ILLEGAL_TYPE_OF_ARGUMENT);
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
return std::make_shared<DataTypeUInt8>();
|
|
|
|
}
|
|
|
|
|
|
|
|
|
2020-11-17 13:24:45 +00:00
|
|
|
ColumnPtr FunctionHasColumnInTable::executeImpl(const ColumnsWithTypeAndName & arguments, const DataTypePtr &, size_t input_rows_count) const
|
2018-09-08 22:04:39 +00:00
|
|
|
{
|
2020-11-17 13:24:45 +00:00
|
|
|
auto get_string_from_columns = [&](const ColumnWithTypeAndName & column) -> String
|
2018-09-08 22:04:39 +00:00
|
|
|
{
|
2020-10-19 13:42:14 +00:00
|
|
|
const ColumnConst * const_column = checkAndGetColumnConst<ColumnString>(column.column.get());
|
2018-09-08 22:04:39 +00:00
|
|
|
return const_column->getValue<String>();
|
|
|
|
};
|
|
|
|
|
|
|
|
size_t arg = 0;
|
|
|
|
String host_name;
|
|
|
|
String user_name;
|
|
|
|
String password;
|
|
|
|
|
|
|
|
if (arguments.size() > 3)
|
2020-10-14 14:04:50 +00:00
|
|
|
host_name = get_string_from_columns(arguments[arg++]);
|
2018-09-08 22:04:39 +00:00
|
|
|
|
|
|
|
if (arguments.size() > 4)
|
2020-10-14 14:04:50 +00:00
|
|
|
user_name = get_string_from_columns(arguments[arg++]);
|
2018-09-08 22:04:39 +00:00
|
|
|
|
|
|
|
if (arguments.size() > 5)
|
2020-10-14 14:04:50 +00:00
|
|
|
password = get_string_from_columns(arguments[arg++]);
|
2018-09-08 22:04:39 +00:00
|
|
|
|
2020-10-14 14:04:50 +00:00
|
|
|
String database_name = get_string_from_columns(arguments[arg++]);
|
|
|
|
String table_name = get_string_from_columns(arguments[arg++]);
|
|
|
|
String column_name = get_string_from_columns(arguments[arg++]);
|
2018-09-08 22:04:39 +00:00
|
|
|
|
2020-06-24 16:37:04 +00:00
|
|
|
if (table_name.empty())
|
|
|
|
throw Exception("Table name is empty", ErrorCodes::UNKNOWN_TABLE);
|
|
|
|
|
2018-09-08 22:04:39 +00:00
|
|
|
bool has_column;
|
|
|
|
if (host_name.empty())
|
|
|
|
{
|
2021-05-28 16:44:59 +00:00
|
|
|
// FIXME this (probably) needs a non-constant access to query context,
|
|
|
|
// because it might initialized a storage. Ideally, the tables required
|
|
|
|
// by the query should be initialized at an earlier stage.
|
|
|
|
const StoragePtr & table = DatabaseCatalog::instance().getTable(
|
|
|
|
{database_name, table_name},
|
|
|
|
const_pointer_cast<Context>(getContext()));
|
2020-06-17 16:39:58 +00:00
|
|
|
auto table_metadata = table->getInMemoryMetadataPtr();
|
|
|
|
has_column = table_metadata->getColumns().hasPhysical(column_name);
|
2018-09-08 22:04:39 +00:00
|
|
|
}
|
|
|
|
else
|
|
|
|
{
|
|
|
|
std::vector<std::vector<String>> host_names = {{ host_name }};
|
|
|
|
|
|
|
|
auto cluster = std::make_shared<Cluster>(
|
2021-04-10 23:33:54 +00:00
|
|
|
getContext()->getSettings(),
|
2018-09-08 22:04:39 +00:00
|
|
|
host_names,
|
|
|
|
!user_name.empty() ? user_name : "default",
|
|
|
|
password,
|
2021-04-10 23:33:54 +00:00
|
|
|
getContext()->getTCPPort(),
|
2018-09-08 22:04:39 +00:00
|
|
|
false);
|
|
|
|
|
2021-05-28 16:44:59 +00:00
|
|
|
// FIXME this (probably) needs a non-constant access to query context,
|
|
|
|
// because it might initialized a storage. Ideally, the tables required
|
|
|
|
// by the query should be initialized at an earlier stage.
|
|
|
|
auto remote_columns = getStructureOfRemoteTable(*cluster,
|
|
|
|
{database_name, table_name},
|
|
|
|
const_pointer_cast<Context>(getContext()));
|
|
|
|
|
2018-09-08 22:04:39 +00:00
|
|
|
has_column = remote_columns.hasPhysical(column_name);
|
|
|
|
}
|
|
|
|
|
2021-05-08 20:50:12 +00:00
|
|
|
return DataTypeUInt8().createColumnConst(input_rows_count, Field{UInt64(has_column)});
|
2018-09-08 22:04:39 +00:00
|
|
|
}
|
|
|
|
|
2020-09-07 18:00:37 +00:00
|
|
|
}
|
2018-09-08 22:04:39 +00:00
|
|
|
|
|
|
|
void registerFunctionHasColumnInTable(FunctionFactory & factory)
|
|
|
|
{
|
|
|
|
factory.registerFunction<FunctionHasColumnInTable>();
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|