2015-04-11 03:10:23 +00:00
|
|
|
#pragma once
|
|
|
|
|
2017-04-01 09:19:00 +00:00
|
|
|
#include <Core/NamesAndTypes.h>
|
2018-03-06 20:18:34 +00:00
|
|
|
#include <Core/Names.h>
|
|
|
|
#include <Core/Block.h>
|
2019-05-01 21:43:05 +00:00
|
|
|
#include <Common/Exception.h>
|
|
|
|
#include <Storages/ColumnDefault.h>
|
2018-10-11 02:57:48 +00:00
|
|
|
#include <Storages/ColumnCodec.h>
|
2019-03-14 15:20:51 +00:00
|
|
|
#include <optional>
|
2020-08-25 15:02:32 +00:00
|
|
|
#include <Compression/CompressionFactory.h>
|
2015-04-11 03:10:23 +00:00
|
|
|
|
2019-05-01 21:43:05 +00:00
|
|
|
#include <boost/multi_index_container.hpp>
|
|
|
|
#include <boost/multi_index/sequenced_index.hpp>
|
|
|
|
#include <boost/multi_index/ordered_index.hpp>
|
|
|
|
#include <boost/multi_index/member.hpp>
|
|
|
|
|
2015-04-11 03:10:23 +00:00
|
|
|
|
|
|
|
namespace DB
|
|
|
|
{
|
|
|
|
|
2019-05-01 21:43:05 +00:00
|
|
|
namespace ErrorCodes
|
|
|
|
{
|
|
|
|
extern const int LOGICAL_ERROR;
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
/// Description of a single table column (in CREATE TABLE for example).
|
2019-03-14 15:20:51 +00:00
|
|
|
struct ColumnDescription
|
|
|
|
{
|
|
|
|
String name;
|
|
|
|
DataTypePtr type;
|
|
|
|
ColumnDefault default_desc;
|
|
|
|
String comment;
|
2020-08-26 08:45:13 +00:00
|
|
|
ASTPtr codec;
|
2019-04-15 09:30:45 +00:00
|
|
|
ASTPtr ttl;
|
2019-03-14 15:20:51 +00:00
|
|
|
|
|
|
|
ColumnDescription() = default;
|
2020-07-01 14:58:52 +00:00
|
|
|
ColumnDescription(ColumnDescription &&) = default;
|
|
|
|
ColumnDescription(const ColumnDescription &) = default;
|
2020-04-27 13:55:30 +00:00
|
|
|
ColumnDescription(String name_, DataTypePtr type_);
|
2019-03-14 15:20:51 +00:00
|
|
|
|
|
|
|
bool operator==(const ColumnDescription & other) const;
|
|
|
|
bool operator!=(const ColumnDescription & other) const { return !(*this == other); }
|
|
|
|
|
|
|
|
void writeText(WriteBuffer & buf) const;
|
|
|
|
void readText(ReadBuffer & buf);
|
|
|
|
};
|
2018-11-12 15:45:35 +00:00
|
|
|
|
2019-05-01 21:43:05 +00:00
|
|
|
|
|
|
|
/// Description of multiple table columns (in CREATE TABLE for example).
|
2019-03-15 18:52:45 +00:00
|
|
|
class ColumnsDescription
|
2015-04-11 03:10:23 +00:00
|
|
|
{
|
2019-03-14 15:20:51 +00:00
|
|
|
public:
|
2018-03-10 17:03:57 +00:00
|
|
|
ColumnsDescription() = default;
|
2020-04-27 13:55:30 +00:00
|
|
|
explicit ColumnsDescription(NamesAndTypesList ordinary_);
|
2018-03-10 17:03:57 +00:00
|
|
|
|
2019-03-14 15:20:51 +00:00
|
|
|
/// `after_column` can be a Nested column name;
|
2020-07-01 14:58:52 +00:00
|
|
|
void add(ColumnDescription column, const String & after_column = String(), bool first = false);
|
2019-03-14 15:20:51 +00:00
|
|
|
/// `column_name` can be a Nested column name;
|
|
|
|
void remove(const String & column_name);
|
2018-03-06 20:18:34 +00:00
|
|
|
|
2020-04-03 10:40:46 +00:00
|
|
|
/// Rename column. column_from and column_to cannot be nested columns.
|
|
|
|
/// TODO add ability to rename nested columns
|
2020-03-24 17:05:38 +00:00
|
|
|
void rename(const String & column_from, const String & column_to);
|
|
|
|
|
2020-04-20 23:44:51 +00:00
|
|
|
/// NOTE Must correspond with Nested::flatten function.
|
2019-03-14 15:20:51 +00:00
|
|
|
void flattenNested(); /// TODO: remove, insert already flattened Nested columns.
|
|
|
|
|
|
|
|
bool operator==(const ColumnsDescription & other) const { return columns == other.columns; }
|
2018-03-06 20:18:34 +00:00
|
|
|
bool operator!=(const ColumnsDescription & other) const { return !(*this == other); }
|
|
|
|
|
2019-05-01 21:43:05 +00:00
|
|
|
auto begin() const { return columns.begin(); }
|
|
|
|
auto end() const { return columns.end(); }
|
2018-03-10 17:03:57 +00:00
|
|
|
|
2019-03-14 15:20:51 +00:00
|
|
|
NamesAndTypesList getOrdinary() const;
|
|
|
|
NamesAndTypesList getMaterialized() const;
|
2019-05-23 11:15:18 +00:00
|
|
|
NamesAndTypesList getAliases() const;
|
2019-05-22 19:38:43 +00:00
|
|
|
NamesAndTypesList getAllPhysical() const; /// ordinary + materialized.
|
2020-04-27 13:55:30 +00:00
|
|
|
NamesAndTypesList getAll() const; /// ordinary + materialized + aliases
|
2018-03-06 20:18:34 +00:00
|
|
|
|
2019-04-15 09:30:45 +00:00
|
|
|
using ColumnTTLs = std::unordered_map<String, ASTPtr>;
|
|
|
|
ColumnTTLs getColumnTTLs() const;
|
|
|
|
|
2019-03-14 15:20:51 +00:00
|
|
|
bool has(const String & column_name) const;
|
|
|
|
bool hasNested(const String & column_name) const;
|
|
|
|
const ColumnDescription & get(const String & column_name) const;
|
2018-03-06 20:18:34 +00:00
|
|
|
|
2019-05-01 21:43:05 +00:00
|
|
|
template <typename F>
|
|
|
|
void modify(const String & column_name, F && f)
|
2020-07-01 14:58:52 +00:00
|
|
|
{
|
|
|
|
modify(column_name, String(), false, std::forward<F>(f));
|
|
|
|
}
|
|
|
|
|
|
|
|
template <typename F>
|
|
|
|
void modify(const String & column_name, const String & after_column, bool first, F && f)
|
2019-05-01 21:43:05 +00:00
|
|
|
{
|
|
|
|
auto it = columns.get<1>().find(column_name);
|
|
|
|
if (it == columns.get<1>().end())
|
|
|
|
throw Exception("Cannot find column " + column_name + " in ColumnsDescription", ErrorCodes::LOGICAL_ERROR);
|
|
|
|
if (!columns.get<1>().modify(it, std::forward<F>(f)))
|
|
|
|
throw Exception("Cannot modify ColumnDescription for column " + column_name + ": column name cannot be changed", ErrorCodes::LOGICAL_ERROR);
|
2020-07-01 14:58:52 +00:00
|
|
|
|
|
|
|
modifyColumnOrder(column_name, after_column, first);
|
2019-05-01 21:43:05 +00:00
|
|
|
}
|
|
|
|
|
2019-03-14 15:20:51 +00:00
|
|
|
Names getNamesOfPhysical() const;
|
2018-03-13 15:00:28 +00:00
|
|
|
bool hasPhysical(const String & column_name) const;
|
2019-03-14 15:20:51 +00:00
|
|
|
NameAndTypePair getPhysical(const String & column_name) const;
|
2015-04-11 03:10:23 +00:00
|
|
|
|
2019-03-14 15:20:51 +00:00
|
|
|
ColumnDefaults getDefaults() const; /// TODO: remove
|
|
|
|
bool hasDefault(const String & column_name) const;
|
2020-10-02 12:38:50 +00:00
|
|
|
bool hasDefaults() const;
|
2019-03-14 15:20:51 +00:00
|
|
|
std::optional<ColumnDefault> getDefault(const String & column_name) const;
|
2015-04-11 03:10:23 +00:00
|
|
|
|
2020-08-28 09:07:20 +00:00
|
|
|
/// Does column has non default specified compression codec
|
|
|
|
bool hasCompressionCodec(const String & column_name) const;
|
2018-12-21 12:17:30 +00:00
|
|
|
CompressionCodecPtr getCodecOrDefault(const String & column_name, CompressionCodecPtr default_codec) const;
|
2019-01-21 14:00:06 +00:00
|
|
|
CompressionCodecPtr getCodecOrDefault(const String & column_name) const;
|
2020-09-21 11:24:10 +00:00
|
|
|
ASTPtr getCodecDescOrDefault(const String & column_name, CompressionCodecPtr default_codec) const;
|
2019-01-21 14:00:06 +00:00
|
|
|
|
2019-03-14 15:20:51 +00:00
|
|
|
String toString() const;
|
2017-04-01 07:20:54 +00:00
|
|
|
static ColumnsDescription parse(const String & str);
|
2018-10-11 02:57:48 +00:00
|
|
|
|
2019-10-11 17:06:21 +00:00
|
|
|
size_t size() const
|
|
|
|
{
|
|
|
|
return columns.size();
|
|
|
|
}
|
|
|
|
|
2020-07-13 17:27:52 +00:00
|
|
|
bool empty() const
|
|
|
|
{
|
|
|
|
return columns.empty();
|
|
|
|
}
|
|
|
|
|
2019-05-01 21:43:05 +00:00
|
|
|
/// Keep the sequence of columns and allow to lookup by name.
|
|
|
|
using Container = boost::multi_index_container<
|
|
|
|
ColumnDescription,
|
|
|
|
boost::multi_index::indexed_by<
|
|
|
|
boost::multi_index::sequenced<>,
|
|
|
|
boost::multi_index::ordered_unique<boost::multi_index::member<ColumnDescription, String, &ColumnDescription::name>>>>;
|
2019-03-15 18:52:45 +00:00
|
|
|
|
|
|
|
private:
|
2019-05-01 21:43:05 +00:00
|
|
|
Container columns;
|
2020-07-01 14:58:52 +00:00
|
|
|
|
|
|
|
void modifyColumnOrder(const String & column_name, const String & after_column, bool first);
|
2015-04-11 03:10:23 +00:00
|
|
|
};
|
|
|
|
|
2020-03-03 10:02:43 +00:00
|
|
|
/// Validate default expressions and corresponding types compatibility, i.e.
|
|
|
|
/// default expression result can be casted to column_type. Also checks, that we
|
|
|
|
/// don't have strange constructions in default expression like SELECT query or
|
|
|
|
/// arrayJoin function.
|
2020-03-03 09:05:17 +00:00
|
|
|
Block validateColumnsDefaultsAndGetSampleBlock(ASTPtr default_expr_list, const NamesAndTypesList & all_columns, const Context & context);
|
2015-04-11 03:10:23 +00:00
|
|
|
}
|