Fixed
Status Update
Comments
da...@google.com <da...@google.com> #2
This is a Room feature request, not one for WorkManager.
da...@google.com <da...@google.com>
ap...@google.com <ap...@google.com> #3
WorkManager needs to add a destructive 2 to 1 migration.
ap...@google.com <ap...@google.com> #4
The way we're thinking, if a downgrade isn't specified, it should be destructive by default in Room.
Description
Currently for queries like `SELCT *` we can use return type List<Model>. Can we also support ArrayMap<String, Model> (for TEXT type primary key) or ArrayMap<Long, Model> (for INTEGER type primary key). This will make traversing faster in this list of elements.
I haven't tried HashMap but support, that would also be great.
SparseArray in case of INTEGER type primary key can also make sense.