Fixed
Status Update
Comments
il...@google.com <il...@google.com>
da...@google.com <da...@google.com> #2
We'd also need to trim the ")".
da...@google.com <da...@google.com> #3
that would not work because we don't know if the IN statement is a positive one or a negative one.
e.g. the result would be different if it is
NOT IN
vs
IN.
but putting () should just do the right thing. afaik, SQLite accepts empty set.
e.g. the result would be different if it is
NOT IN
vs
IN.
but putting () should just do the right thing. afaik, SQLite accepts empty set.
ap...@google.com <ap...@google.com> #4
When I tested empty sets I was getting no results, but let me double check that I didn't goof something.
da...@google.com <da...@google.com> #5
i think that is WAI.
Imagine you have a query like:
@Query("select * from users where uid IN (:uids)")
List<User> getUsersByIds(List<String> uids)
If you call that query w/ an empty list of uids, the expected result should be an empty list of users.
Imagine you have a query like:
@Query("select * from users where uid IN (:uids)")
List<User> getUsersByIds(List<String> uids)
If you call that query w/ an empty list of uids, the expected result should be an empty list of users.
Description
Component used: work-runtime-ktx Version used: 2.10.0
I added a simple worker to my project that is using the new androidx.sqlite bundled library (2.5.0-rc02), and I get the following crash: