ClickHouse/dbms/src/Interpreters/ReplaceQueryParameterVisitor.cpp

65 lines
2.1 KiB
C++
Raw Normal View History

2019-06-04 18:15:32 +00:00
#include <boost/algorithm/string/replace.hpp>
2019-05-18 21:07:23 +00:00
#include <Common/typeid_cast.h>
2019-05-18 23:57:26 +00:00
#include <Columns/IColumn.h>
2019-05-18 21:07:23 +00:00
#include <Core/Field.h>
#include <DataTypes/IDataType.h>
#include <DataTypes/DataTypeFactory.h>
#include <Formats/FormatSettings.h>
#include <IO/ReadBufferFromString.h>
#include <Parsers/ASTLiteral.h>
#include <Parsers/ASTQueryParameter.h>
#include <Interpreters/ReplaceQueryParameterVisitor.h>
namespace DB
{
void ReplaceQueryParameterVisitor::visit(ASTPtr & ast)
{
for (auto & child : ast->children)
{
if (child->as<ASTQueryParameter>())
visitvisitQueryParameter(child);
2019-05-18 21:07:23 +00:00
else
visit(child);
}
}
const String & ReplaceQueryParameterVisitor::getParamValue(const String & name)
2019-05-18 21:07:23 +00:00
{
2019-05-25 13:43:52 +00:00
auto search = parameters_substitution.find(name);
if (search != parameters_substitution.end())
2019-05-18 21:07:23 +00:00
return search->second;
else
2019-06-05 21:04:17 +00:00
throw Exception("Expected name '" + name + "' in argument --param_{name}", ErrorCodes::BAD_ARGUMENTS);
2019-05-18 21:07:23 +00:00
}
void ReplaceQueryParameterVisitor::visitQueryParameter(ASTPtr & ast)
2019-05-18 21:07:23 +00:00
{
const auto & ast_param = ast->as<ASTQueryParameter &>();
const String & value = getParamValue(ast_param.name);
const String & type = ast_param.type;
2019-05-18 21:07:23 +00:00
2019-06-04 18:15:32 +00:00
/// Replacing all occurrences of types Date and DateTime with String.
/// String comparison is used in "WHERE" conditions with this types.
/// TODO: WTF, totally incorrect
2019-06-05 21:04:17 +00:00
2019-06-04 18:15:32 +00:00
boost::replace_all(type, "DateTime", "String");
boost::replace_all(type, "Date", "String");
const auto data_type = DataTypeFactory::instance().get(type);
2019-05-18 21:07:23 +00:00
auto temp_column_ptr = data_type->createColumn();
2019-05-18 23:57:26 +00:00
IColumn & temp_column = *temp_column_ptr;
2019-05-18 21:07:23 +00:00
ReadBufferFromString read_buffer{value};
FormatSettings format_settings;
data_type->deserializeAsWholeText(temp_column, read_buffer, format_settings);
2019-06-05 21:04:17 +00:00
if (!read_buffer.eof())
throw Exception("Expected correct value in parameter with name '" + ast_param->name + "'", ErrorCodes::BAD_ARGUMENTS);
2019-05-18 21:07:23 +00:00
Field field = temp_column[0];
2019-05-25 13:43:52 +00:00
ast = std::make_shared<ASTLiteral>(std::move(field));
2019-05-18 21:07:23 +00:00
}
}