ClickHouse/src/Storages/TTLDescription.h

98 lines
2.7 KiB
C++
Raw Normal View History

2020-05-28 15:34:33 +00:00
#pragma once
#include <Parsers/IAST_fwd.h>
#include <Storages/DataDestinationType.h>
#include <Storages/ColumnsDescription.h>
#include <Interpreters/ExpressionActions.h>
#include <Interpreters/AggregateDescription.h>
#include <Storages/StorageInMemoryMetadata.h>
#include <Storages/TTLMode.h>
namespace DB
{
2020-05-28 16:31:27 +00:00
struct TTLSetPartDescription
{
/// Name of column in set part of ttl expression
/// x = sum(y)
/// ^
String column_name;
/// Name of column on the right hand of the set part of TTL expression
/// x = sum(y)
/// ^~~~~~^
String expression_result_column_name;
/// Expressions to calculate the value of set expression
ExpressionActionsPtr expression;
};
using TTLSetPartDescriptions = std::vector<TTLSetPartDescription>;
2020-05-28 15:34:33 +00:00
/// Common struct for TTL record in storage
struct TTLDescription
{
TTLMode mode;
/// Expression part of TTL AST:
/// TTL d + INTERVAL 1 DAY
2020-05-28 16:31:27 +00:00
/// ^~~~~~~~~~~~~~~~~~~^
2020-05-28 15:34:33 +00:00
ASTPtr expression_ast;
/// Expresion actions evaluated from AST
ExpressionActionsPtr expression;
/// Result column of this TTL expression
String result_column;
2020-05-28 16:31:27 +00:00
/// WHERE part in TTL expression
/// TTL ... WHERE x % 10 == 0 and y > 5
/// ^~~~~~~~~~~~~~~~~~~~~~^
2020-05-28 15:34:33 +00:00
ExpressionActionsPtr where_expression;
2020-05-28 16:31:27 +00:00
/// Name of result column from WHERE expression
2020-05-28 15:34:33 +00:00
String where_result_column;
2020-05-28 16:31:27 +00:00
/// Names of key columns in GROUP BY expression
/// TTL ... GROUP BY toDate(d), x SET ...
/// ^~~~~~~~~~~~^
2020-05-28 15:34:33 +00:00
Names group_by_keys;
2020-05-28 16:31:27 +00:00
/// SET parts of TTL expression
TTLSetPartDescriptions set_parts;
/// Aggregate descriptions for GROUP BY in TTL
2020-05-28 15:34:33 +00:00
AggregateDescriptions aggregate_descriptions;
/// Destination type, only valid for table TTLs.
/// For example DISK or VOLUME
DataDestinationType destination_type;
/// Name of destination disk or volume
String destination_name;
/// Parse TTL structure from definition. Able to parse both column and table
/// TTLs.
static TTLDescription getTTLFromAST(const ASTPtr & definition_ast, const ColumnsDescription & columns, const Context & context, const StorageMetadataKeyField & primary_key);
};
/// Mapping from column name to column TTL
using TTLColumnsDescription = std::unordered_map<String, TTLDescription>;
using TTLDescriptions = std::vector<TTLDescription>;
/// Common TTL for all table. Specified after defining the table columns.
struct TTLTableDescription
{
/// Definition. Include all parts of TTL:
/// TTL d + INTERVAL 1 day TO VOLUME 'disk1'
/// ^~~~~~~~~~~~~~~definition~~~~~~~~~~~~~~~^
ASTPtr definition_ast;
/// Rows removing TTL
TTLDescription rows_ttl;
/// Moving data TTL (to other disks or volumes)
TTLDescriptions move_ttl;
};
}