mirror of
https://github.com/ClickHouse/ClickHouse.git
synced 2024-11-18 05:32:52 +00:00
14 lines
243 B
C++
14 lines
243 B
C++
#pragma once
|
|
|
|
#include <Core/Types.h>
|
|
#include <common/strong_typedef.h>
|
|
|
|
namespace DB
|
|
{
|
|
|
|
STRONG_TYPEDEF(UInt32, MergeTreeDataFormatVersion)
|
|
|
|
const MergeTreeDataFormatVersion MERGE_TREE_DATA_MIN_FORMAT_VERSION_WITH_CUSTOM_PARTITIONING {1};
|
|
|
|
}
|