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 5c325fc commit 5957bd7Copy full SHA for 5957bd7
firebase-firestore/src/main/java/com/google/firebase/firestore/local/SQLiteIndexManager.java
@@ -256,7 +256,7 @@ private SQLitePersistence.Query generateQuery(
256
StringBuilder statement = new StringBuilder();
257
statement.append(
258
"SELECT document_name, directional_value FROM index_entries WHERE index_id = ? ");
259
- statement.append(arrayValues.isEmpty() ? "AND array_value IS NULL ": "AND array_value = ? ");
+ statement.append(arrayValues.isEmpty() ? "AND array_value IS NULL " : "AND array_value = ? ");
260
statement.append("AND directional_value ").append(lowerBoundOp).append(" ? ");
261
if (upperBounds != null) {
262
statement.append("AND directional_value ").append(upperBoundOp).append(" ? ");
0 commit comments