Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
blackstar-baba committed Apr 4, 2024
1 parent 78a2097 commit 5a72c3f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/query/expression/src/values.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1169,7 +1169,7 @@ impl Column {
DataType::EmptyMap => Column::EmptyMap { len },
DataType::Boolean => BooleanType::from_data(
(0..len)
.map(|_| SmallRng::seed_from_u64(1000).gen_bool(0.5))
.map(|_| SmallRng::from_entropy().gen_bool(0.5))
.collect_vec(),
),
DataType::Binary => BinaryType::from_data(
Expand Down

0 comments on commit 5a72c3f

Please sign in to comment.