1 | #pragma once |
---|---|
2 | |
3 | #include <Core/Types.h> |
4 | #include <common/strong_typedef.h> |
5 | |
6 | namespace DB |
7 | { |
8 | |
9 | STRONG_TYPEDEF(UInt32, MergeTreeDataFormatVersion) |
10 | |
11 | const MergeTreeDataFormatVersion MERGE_TREE_DATA_MIN_FORMAT_VERSION_WITH_CUSTOM_PARTITIONING {1}; |
12 | |
13 | } |
14 |