Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
CuriousGeorgiy committed Oct 26, 2023
1 parent b3c27b3 commit f6bfca7
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion vshard/hash.lua
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ end
-- double.
--
local function mpcrc32(shard_key)
if type(shard_key) ~= 'table' then
if type(shard_key) ~= 'table' and not box.tuple.is(shard_key) then
return ldigest.crc32(mpcrc32_one(shard_key))
else
local crc32 = ldigest.crc32.new()
Expand Down

0 comments on commit f6bfca7

Please sign in to comment.