#pragma once #include #include #include #include #include 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; }; }