ClickHouse/src/Storages/CMakeLists.txt
Nicolae Vartolomei af76ff1dbf RFC: Add metadata section to MergeTreeWriteAheadLog
Current WAL format doesn't seem to be extendable without breaking
reverse compatibility.

This PR proposes to introduces a metadata section
for each action in the WAL to which optional fields can be added.

Adding new fields is trivial and doesn't have to break backwards
compatibility if these are not critical for correctness.

Metadata contains the minimum version of the reader allowed
to interpret it.

Removing fields is not supported.
2020-10-19 12:16:31 +01:00

7 lines
107 B
CMake

add_subdirectory(MergeTree)
add_subdirectory(System)
if(ENABLE_TESTS)
add_subdirectory(tests)
endif()