Skip to content

Commit

Permalink
Merge pull request #7439 from volfco/master
Browse files Browse the repository at this point in the history
Fixed spelling error in error message
  • Loading branch information
alexey-milovidov committed Oct 23, 2019
2 parents 4b9e9ce + a413770 commit 5c73a75
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion dbms/src/Storages/MergeTree/MergeTreeData.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -3043,7 +3043,7 @@ DiskSpace::ReservationPtr MergeTreeData::reserveSpace(UInt64 expected_size)
if (reservation)
return reservation;

throw Exception("Cannot reserve " + formatReadableSizeWithBinarySuffix(expected_size) + ", not enought space.",
throw Exception("Cannot reserve " + formatReadableSizeWithBinarySuffix(expected_size) + ", not enough space.",
ErrorCodes::NOT_ENOUGH_SPACE);
}

Expand Down

0 comments on commit 5c73a75

Please sign in to comment.