Skip to content

Commit

Permalink
Fix darwin build
Browse files Browse the repository at this point in the history
  • Loading branch information
rschu1ze committed Nov 7, 2023
1 parent fe5dc14 commit 66800a3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Functions/array/arrayRandomSample.cpp
Expand Up @@ -59,7 +59,7 @@ class FunctionArrayRandomSample : public IFunction
"The second argument of function {} is empty or null, type = {}",
getName(), arguments[1].type->getName());

const UInt64 samples = col_samples->getUInt(0);
const size_t samples = col_samples->getUInt(0);

pcg64_fast rng(randomSeed());

Expand Down

0 comments on commit 66800a3

Please sign in to comment.