2017-04-01 09:19:00 +00:00
|
|
|
#include <Core/Block.h>
|
|
|
|
#include <Storages/ColumnDefault.h>
|
|
|
|
#include <Interpreters/ExpressionAnalyzer.h>
|
|
|
|
#include <Interpreters/ExpressionActions.h>
|
|
|
|
#include <Interpreters/evaluateMissingDefaults.h>
|
|
|
|
#include <Parsers/ASTExpressionList.h>
|
|
|
|
#include <Parsers/ASTWithAlias.h>
|
2016-01-13 00:32:59 +00:00
|
|
|
#include <utility>
|
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
|
|
|
void evaluateMissingDefaults(Block & block,
|
2017-12-25 21:57:29 +00:00
|
|
|
const NamesAndTypesList & required_columns,
|
2017-04-01 07:20:54 +00:00
|
|
|
const ColumnDefaults & column_defaults,
|
|
|
|
const Context & context)
|
2016-01-13 00:32:59 +00:00
|
|
|
{
|
2017-04-01 07:20:54 +00:00
|
|
|
if (column_defaults.empty())
|
|
|
|
return;
|
2016-01-13 00:32:59 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
ASTPtr default_expr_list = std::make_shared<ASTExpressionList>();
|
2016-01-13 00:32:59 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
for (const auto & column : required_columns)
|
|
|
|
{
|
|
|
|
if (block.has(column.name))
|
|
|
|
continue;
|
2016-01-13 00:32:59 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
const auto it = column_defaults.find(column.name);
|
2016-01-13 00:32:59 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
/// expressions must be cloned to prevent modification by the ExpressionAnalyzer
|
|
|
|
if (it != column_defaults.end())
|
|
|
|
default_expr_list->children.emplace_back(
|
|
|
|
setAlias(it->second.expression->clone(), it->first));
|
|
|
|
}
|
2016-01-13 00:32:59 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
/// nothing to evaluate
|
|
|
|
if (default_expr_list->children.empty())
|
|
|
|
return;
|
2016-01-13 00:32:59 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
/** ExpressionAnalyzer eliminates "unused" columns, in order to ensure their safety
|
|
|
|
* we are going to operate on a copy instead of the original block */
|
|
|
|
Block copy_block{block};
|
|
|
|
/// evaluate default values for defaulted columns
|
2016-08-15 19:41:44 +00:00
|
|
|
|
2017-12-25 21:57:29 +00:00
|
|
|
NamesAndTypesList available_columns;
|
2017-04-01 07:20:54 +00:00
|
|
|
for (size_t i = 0, size = block.columns(); i < size; ++i)
|
|
|
|
available_columns.emplace_back(block.getByPosition(i).name, block.getByPosition(i).type);
|
2016-08-15 19:41:44 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
ExpressionAnalyzer{default_expr_list, context, {}, available_columns}.getActions(true)->execute(copy_block);
|
2016-01-13 00:32:59 +00:00
|
|
|
|
2017-04-01 07:20:54 +00:00
|
|
|
/// move evaluated columns to the original block, materializing them at the same time
|
2018-09-20 11:16:15 +00:00
|
|
|
size_t pos = 0;
|
|
|
|
for (auto col = required_columns.begin(); col != required_columns.end(); ++col, ++pos)
|
2017-04-01 07:20:54 +00:00
|
|
|
{
|
2018-09-20 11:16:15 +00:00
|
|
|
if (copy_block.has(col->name))
|
|
|
|
{
|
|
|
|
auto evaluated_col = copy_block.getByName(col->name);
|
|
|
|
if (ColumnPtr converted = evaluated_col.column->convertToFullColumnIfConst())
|
|
|
|
evaluated_col.column = converted;
|
2016-01-13 00:32:59 +00:00
|
|
|
|
2018-09-20 11:16:15 +00:00
|
|
|
block.insert(pos, std::move(evaluated_col));
|
|
|
|
}
|
2017-04-01 07:20:54 +00:00
|
|
|
}
|
2016-01-13 00:32:59 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
}
|