From 84fe2bfdf305ae5c9571b4488aa428c970738d7c Mon Sep 17 00:00:00 2001 From: Alexey Milovidov Date: Tue, 4 May 2021 14:53:29 +0300 Subject: [PATCH] Return hashes of UUID --- src/Functions/FunctionsHashing.h | 1 + 1 file changed, 1 insertion(+) diff --git a/src/Functions/FunctionsHashing.h b/src/Functions/FunctionsHashing.h index 94f8acbdf66..1584fc2cf06 100644 --- a/src/Functions/FunctionsHashing.h +++ b/src/Functions/FunctionsHashing.h @@ -981,6 +981,7 @@ private: else if (which.isInt64()) executeIntType(icolumn, vec_to); else if (which.isInt128()) executeBigIntType(icolumn, vec_to); else if (which.isInt256()) executeBigIntType(icolumn, vec_to); + else if (which.isUUID()) executeBigIntType(icolumn, vec_to); else if (which.isEnum8()) executeIntType(icolumn, vec_to); else if (which.isEnum16()) executeIntType(icolumn, vec_to); else if (which.isDate()) executeIntType(icolumn, vec_to);