Merge pull request #7439 from volfco/master

Fixed spelling error in error message
This commit is contained in:
alexey-milovidov 2019-10-23 07:33:56 +03:00 committed by GitHub
commit 5c73a75843
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -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);
}