Skip to content

Commit 5957bd7

Browse files
Format
1 parent 5c325fc commit 5957bd7

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
@@ -256,7 +256,7 @@ private SQLitePersistence.Query generateQuery(
256256
StringBuilder statement = new StringBuilder();
257257
statement.append(
258258
"SELECT document_name, directional_value FROM index_entries WHERE index_id = ? ");
259-
statement.append(arrayValues.isEmpty() ? "AND array_value IS NULL ": "AND array_value = ? ");
259+
statement.append(arrayValues.isEmpty() ? "AND array_value IS NULL " : "AND array_value = ? ");
260260
statement.append("AND directional_value ").append(lowerBoundOp).append(" ? ");
261261
if (upperBounds != null) {
262262
statement.append("AND directional_value ").append(upperBoundOp).append(" ? ");

0 commit comments

Comments
 (0)