We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9d50648 commit ff37c81Copy full SHA for ff37c81
src/filter/ops/op_val_nums.rs
@@ -126,7 +126,7 @@ impl OpValueToOpValType for $ov {
126
("$gt", Value::Number(num)) => $ov::Gt($asfn(num)?),
127
("$gte", Value::Number(num)) => $ov::Gte($asfn(num)?),
128
129
- ("$null", Value::Number(num)) => $ov::Gte($asfn(num)?),
+ ("$null", Value::Bool(v)) => $ov::Null(v),
130
131
(_, value) => return Err(Error::JsonOpValNotSupported{
132
operator: op.to_string(),
0 commit comments