2018-11-27 00:43:58 +00:00
|
|
|
#include <Interpreters/addMissingDefaults.h>
|
|
|
|
|
|
|
|
#include <Common/typeid_cast.h>
|
|
|
|
#include <DataTypes/NestedUtils.h>
|
|
|
|
#include <DataTypes/DataTypeArray.h>
|
|
|
|
#include <Columns/ColumnArray.h>
|
2020-02-17 15:44:13 +00:00
|
|
|
#include <Interpreters/inplaceBlockConversions.h>
|
2018-11-27 00:43:58 +00:00
|
|
|
#include <Core/Block.h>
|
2020-10-02 12:38:50 +00:00
|
|
|
#include <Storages/ColumnsDescription.h>
|
2021-02-04 20:36:50 +00:00
|
|
|
#include <Interpreters/ExpressionActions.h>
|
2018-11-27 00:43:58 +00:00
|
|
|
|
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2020-10-02 12:38:50 +00:00
|
|
|
Block addMissingDefaults(
|
|
|
|
const Block & block,
|
|
|
|
const NamesAndTypesList & required_columns,
|
|
|
|
const ColumnsDescription & columns,
|
|
|
|
const Context & context)
|
2018-11-27 00:43:58 +00:00
|
|
|
{
|
|
|
|
/// For missing columns of nested structure, you need to create not a column of empty arrays, but a column of arrays of correct lengths.
|
|
|
|
/// First, remember the offset columns for all arrays in the block.
|
|
|
|
std::map<String, ColumnPtr> offset_columns;
|
|
|
|
|
|
|
|
for (size_t i = 0, size = block.columns(); i < size; ++i)
|
|
|
|
{
|
|
|
|
const auto & elem = block.getByPosition(i);
|
|
|
|
|
|
|
|
if (const ColumnArray * array = typeid_cast<const ColumnArray *>(&*elem.column))
|
|
|
|
{
|
|
|
|
String offsets_name = Nested::extractTableName(elem.name);
|
|
|
|
auto & offsets_column = offset_columns[offsets_name];
|
|
|
|
|
|
|
|
/// If for some reason there are different offset columns for one nested structure, then we take nonempty.
|
|
|
|
if (!offsets_column || offsets_column->empty())
|
|
|
|
offsets_column = array->getOffsetsPtr();
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
const size_t rows = block.rows();
|
|
|
|
Block res;
|
|
|
|
|
|
|
|
/// We take given columns from input block and missed columns without default value
|
|
|
|
/// (default and materialized will be computed later).
|
|
|
|
for (const auto & column : required_columns)
|
|
|
|
{
|
|
|
|
if (block.has(column.name))
|
|
|
|
{
|
|
|
|
res.insert(block.getByName(column.name));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
2020-10-02 12:38:50 +00:00
|
|
|
if (columns.hasDefault(column.name))
|
2018-11-27 00:43:58 +00:00
|
|
|
continue;
|
|
|
|
|
|
|
|
String offsets_name = Nested::extractTableName(column.name);
|
|
|
|
if (offset_columns.count(offsets_name))
|
|
|
|
{
|
|
|
|
ColumnPtr offsets_column = offset_columns[offsets_name];
|
|
|
|
DataTypePtr nested_type = typeid_cast<const DataTypeArray &>(*column.type).getNestedType();
|
|
|
|
UInt64 nested_rows = rows ? get<UInt64>((*offsets_column)[rows - 1]) : 0;
|
|
|
|
|
|
|
|
ColumnPtr nested_column = nested_type->createColumnConstWithDefaultValue(nested_rows)->convertToFullColumnIfConst();
|
|
|
|
auto new_column = ColumnArray::create(nested_column, offsets_column);
|
|
|
|
res.insert(ColumnWithTypeAndName(std::move(new_column), column.type, column.name));
|
|
|
|
continue;
|
|
|
|
}
|
|
|
|
|
|
|
|
/** It is necessary to turn a constant column into a full column, since in part of blocks (from other parts),
|
|
|
|
* it can be full (or the interpreter may decide that it is constant everywhere).
|
|
|
|
*/
|
|
|
|
auto new_column = column.type->createColumnConstWithDefaultValue(rows)->convertToFullColumnIfConst();
|
|
|
|
res.insert(ColumnWithTypeAndName(std::move(new_column), column.type, column.name));
|
|
|
|
}
|
|
|
|
|
2020-10-02 12:38:50 +00:00
|
|
|
/// Computes explicitly specified values by default and materialized columns.
|
2021-02-04 20:36:50 +00:00
|
|
|
auto dag = createFillingMissingDefaultsExpression(res, required_columns, columns, context);
|
|
|
|
if (dag)
|
|
|
|
{
|
|
|
|
auto actions = std::make_shared<ExpressionActions>(std::move(dag));
|
|
|
|
actions->execute(res);
|
|
|
|
}
|
2018-11-27 00:43:58 +00:00
|
|
|
return res;
|
|
|
|
}
|
|
|
|
|
|
|
|
}
|