aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorbiwboris0 <biwboris0@yandex-team.ru>2022-02-10 16:52:18 +0300
committerDaniil Cherednik <dcherednik@yandex-team.ru>2022-02-10 16:52:18 +0300
commit98c1b6d9fd0160d9aa0d1ff3ae261c1628a66eaa (patch)
treecab0cf579d31638720da8a34962c510ae0a5957f
parent6795a2430f7fe81de2d7ac971c019a7a422718c9 (diff)
downloadydb-98c1b6d9fd0160d9aa0d1ff3ae261c1628a66eaa.tar.gz
Restoring authorship annotation for <biwboris0@yandex-team.ru>. Commit 1 of 2.
-rw-r--r--ydb/library/yql/udfs/common/digest/digest_udf.cpp16
1 files changed, 8 insertions, 8 deletions
diff --git a/ydb/library/yql/udfs/common/digest/digest_udf.cpp b/ydb/library/yql/udfs/common/digest/digest_udf.cpp
index 7487a078dde..7ff899f246c 100644
--- a/ydb/library/yql/udfs/common/digest/digest_udf.cpp
+++ b/ydb/library/yql/udfs/common/digest/digest_udf.cpp
@@ -32,13 +32,13 @@ namespace {
return TUnboxedValuePod(hash);
}
- SIMPLE_UDF(TCrc64, ui64(TAutoMap<char*>)) {
- Y_UNUSED(valueBuilder);
- const auto& inputRef = args[0].AsStringRef();
- ui64 hash = crc64(inputRef.Data(), inputRef.Size());
- return TUnboxedValuePod(hash);
- }
-
+ SIMPLE_UDF(TCrc64, ui64(TAutoMap<char*>)) {
+ Y_UNUSED(valueBuilder);
+ const auto& inputRef = args[0].AsStringRef();
+ ui64 hash = crc64(inputRef.Data(), inputRef.Size());
+ return TUnboxedValuePod(hash);
+ }
+
SIMPLE_UDF(TFnv32, ui32(TAutoMap<char*>)) {
Y_UNUSED(valueBuilder);
const auto& inputRef = args[0].AsStringRef();
@@ -352,7 +352,7 @@ namespace {
SIMPLE_MODULE(TDigestModule,
TCrc32c,
- TCrc64,
+ TCrc64,
TFnv32,
TFnv64,
TMurMurHash,