From 7da6874bb3bb0b493c04625b010217ce398dd846 Mon Sep 17 00:00:00 2001 From: Lloyd-Pottiger Date: Thu, 9 May 2024 14:44:24 +0800 Subject: [PATCH] init template Signed-off-by: Lloyd-Pottiger --- dbms/src/IO/Compression/EncodingUtil.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/dbms/src/IO/Compression/EncodingUtil.cpp b/dbms/src/IO/Compression/EncodingUtil.cpp index db24b7fa68b..b947bf6dd84 100644 --- a/dbms/src/IO/Compression/EncodingUtil.cpp +++ b/dbms/src/IO/Compression/EncodingUtil.cpp @@ -65,6 +65,10 @@ template void ApplyFrameOfReference(UInt8 *, UInt8, UInt32); template void ApplyFrameOfReference(UInt16 *, UInt16, UInt32); template void ApplyFrameOfReference(UInt32 *, UInt32, UInt32); template void ApplyFrameOfReference(UInt64 *, UInt64, UInt32); +template void ApplyFrameOfReference(Int8 *, Int8, UInt32); +template void ApplyFrameOfReference(Int16 *, Int16, UInt32); +template void ApplyFrameOfReference(Int32 *, Int32, UInt32); +template void ApplyFrameOfReference(Int64 *, Int64, UInt32); template void SubtractFrameOfReference(T * dst, T frame_of_reference, UInt32 count)