mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-18 12:22:12 +00:00
24 lines
539 B
C++
24 lines
539 B
C++
#pragma once
|
|
|
|
#include <Storages/ColumnsDescription.h>
|
|
#include <Storages/IndicesDescription.h>
|
|
#include <Storages/ConstraintsDescription.h>
|
|
#include <Common/SettingsChanges.h>
|
|
#include <Parsers/IAST_fwd.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
struct StorageInMemoryMetadata
|
|
{
|
|
ColumnsDescription columns;
|
|
IndicesDescription indices;
|
|
ConstraintsDescription constraints;
|
|
ASTPtr order_by_expression = nullptr;
|
|
ASTPtr primary_key_expression = nullptr;
|
|
ASTPtr ttl_for_table_expression = nullptr;
|
|
SettingsChanges settings_changes;
|
|
};
|
|
|
|
}
|