mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-12-14 02:12:21 +00:00
16 lines
263 B
C++
16 lines
263 B
C++
#pragma once
|
|
#include <Core/Types.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
/// A base class for stateless table engines configurations.
|
|
struct StatelessTableEngineConfiguration
|
|
{
|
|
String format = "auto";
|
|
String compression_method = "auto";
|
|
String structure = "auto";
|
|
};
|
|
|
|
}
|