ClickHouse/dbms/src/Storages/MergeTree/MergeTreeDataFormatVersion.h

14 lines
244 B
C++
Raw Normal View History

#pragma once
2017-09-13 16:22:04 +00:00
#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};
}