mirror of
https://github.com/tursodatabase/limbo.git
synced 2025-08-04 18:18:03 +00:00
change the boolean name to a more descriptive version
This commit is contained in:
parent
8e094de6aa
commit
ec1c796650
1 changed files with 2 additions and 2 deletions
|
@ -469,8 +469,8 @@ impl ArbitraryFrom<(&Table, bool)> for CompoundPredicate {
|
|||
|
||||
impl ArbitraryFrom<Table> for Predicate {
|
||||
fn arbitrary_from<R: Rng>(rng: &mut R, table: &Table) -> Self {
|
||||
let b = rng.gen_bool(0.5);
|
||||
CompoundPredicate::arbitrary_from(rng, &(table, b)).0
|
||||
let predicate_value = rng.gen_bool(0.5);
|
||||
CompoundPredicate::arbitrary_from(rng, &(table, predicate_value)).0
|
||||
}
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue