Skip to content

Commit 58a179c

Browse files
Fix merge
1 parent 7314ee7 commit 58a179c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

firebase-firestore/src/main/java/com/google/firebase/firestore/local/SQLiteIndexManager.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -205,7 +205,7 @@ public Set<DocumentKey> getDocumentsMatchingTarget(Target target) {
205205
String lowerBoundOp = lowerBound.isInclusive() ? ">=" : ">";
206206
if (upperBound != null) {
207207
Object[] upperBoundValues = encodeTargetValues(fieldIndex, target, upperBound.getPosition());
208-
String upperBoundOp = upperBound.isInclusive() ? "<" : "<=";
208+
String upperBoundOp = upperBound.isInclusive() ? "<=" : "<";
209209
query =
210210
generateQuery(
211211
fieldIndex.getIndexId(),

0 commit comments

Comments
 (0)