Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 385d3cf

Browse files
committedMay 23, 2025·
Fix query to pipeline logic.
1 parent 96aac51 commit 385d3cf

File tree

1 file changed

+1
-1
lines changed
  • firebase-firestore/src/main/java/com/google/firebase/firestore/core

1 file changed

+1
-1
lines changed
 

‎firebase-firestore/src/main/java/com/google/firebase/firestore/core/FieldFilter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -195,7 +195,7 @@ BooleanExpr toPipelineExpr() {
195195
if (value.hasNullValue()) {
196196
return and(exists, x.isNull());
197197
} else if (isNanValue(value)) {
198-
// The isNotNan will error on non-numeric values.
198+
// The isNan will error on non-numeric values.
199199
return and(exists, ifError(x.isNan(), Expr.constant(false)));
200200
} else {
201201
return and(exists, x.eq(value));

0 commit comments

Comments
 (0)
Please sign in to comment.