From 7183c3a7b0a57f81db423a046e40a4a54ef01711 Mon Sep 17 00:00:00 2001 From: alexey-milovidov Date: Thu, 26 Dec 2019 19:25:19 +0300 Subject: [PATCH] Update CompressionCodecDoubleDelta.cpp --- dbms/src/Compression/CompressionCodecDoubleDelta.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dbms/src/Compression/CompressionCodecDoubleDelta.cpp b/dbms/src/Compression/CompressionCodecDoubleDelta.cpp index 0bb60f8d6e4..dc4a5084c83 100644 --- a/dbms/src/Compression/CompressionCodecDoubleDelta.cpp +++ b/dbms/src/Compression/CompressionCodecDoubleDelta.cpp @@ -152,7 +152,7 @@ UInt32 getCompressedDataSize(UInt8 data_bytes_size, UInt32 uncompressed_size) template UInt32 compressDataForType(const char * source, UInt32 source_size, char * dest) { - // Since only unsinged int has granted 2-compliment overflow handling, + // Since only unsinged int has granted 2-complement overflow handling, // we are doing math here only on unsigned types. // To simplify and booletproof code, we enforce ValueType to be unsigned too. static_assert(is_unsigned_v, "ValueType must be unsigned.");