Skip to content

Commit

Permalink
Revert version check
Browse files Browse the repository at this point in the history
  • Loading branch information
alesapin committed Mar 15, 2020
1 parent b0cc690 commit 2c16732
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ void ReplicatedMergeTreeLogEntryData::readText(ReadBuffer & in)

in >> "format version: " >> format_version >> "\n";

if (format_version < 1 || format_version > 5)
if (format_version < 1 || format_version > 4)
throw Exception("Unknown ReplicatedMergeTreeLogEntry format version: " + DB::toString(format_version), ErrorCodes::UNKNOWN_FORMAT_VERSION);

if (format_version >= 2)
Expand Down

0 comments on commit 2c16732

Please sign in to comment.