Skip to content

Commit

Permalink
Update dbms/src/IO/Compression/CompressionCodecDeltaFor.cpp
Browse files Browse the repository at this point in the history
Co-authored-by: jinhelin <[email protected]>
  • Loading branch information
Lloyd-Pottiger and JinheLin authored Apr 28, 2024
1 parent 6a7a78f commit 3063b5f
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions dbms/src/IO/Compression/CompressionCodecDeltaFor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -55,6 +55,7 @@ namespace
template <typename T>
UInt32 compressData(const char * source, UInt32 source_size, char * dest)
{
static_assert(std::is_integral<T>::value, "Integral required.");
const auto count = source_size / sizeof(T);
using ST = typename std::make_signed<T>::type;
std::vector<ST> deltas;
Expand Down

0 comments on commit 3063b5f

Please sign in to comment.