Skip to content

Commit ceb3121

Browse files
author
Brian Chen
committed
active = 1
1 parent e5fdd37 commit ceb3121

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
@@ -389,7 +389,7 @@ public List<FieldIndex> getFieldIndexes() {
389389
List<FieldIndex> allIndexes = new ArrayList<>();
390390
db.query(
391391
"SELECT index_id, collection_group, index_proto, update_time_seconds, update_time_nanos FROM index_configuration "
392-
+ "WHERE active")
392+
+ "WHERE active = 1")
393393
.forEach(
394394
row -> {
395395
try {

0 commit comments

Comments
 (0)