Skip to content

Commit 9ab84da

Browse files
committed
feat(query): fix lint
1 parent 0c6a4b6 commit 9ab84da

File tree

1 file changed

+1
-1
lines changed
  • src/query/functions/src/scalars/logics

1 file changed

+1
-1
lines changed

src/query/functions/src/scalars/logics/and.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ impl Function for LogicAndFiltersFunction {
101101
}
102102
}
103103
}
104-
let validity = validity.unwrap_or(MutableBitmap::from_len_set(input_rows).into());
104+
let validity = validity.unwrap_or_else(|| MutableBitmap::from_len_set(input_rows).into());
105105
Ok(BooleanColumn::from_arrow_data(validity).arc())
106106
}
107107
}

0 commit comments

Comments
 (0)