Verified
Status Update
Comments
cc...@google.com <cc...@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.
cc...@google.com <cc...@google.com> #4
When I tested empty sets I was getting no results, but let me double check that I didn't goof something.
Description
Version used:
room = "1.1.0-alpha3"
paging = "1.0.0-alpha6"
Lets say i have a dao method with joined tables in the query:
@Query("SELECT * from t1 left join t2")
public abstract DataSource.Factory<Integer, ProjectionModel> getAll();
The following code gets generated by room:
return new LimitOffsetDataSource<ProjectionModel>(__db, _statement, false ,"t1", ,"t2")
There is multiple commas between the observed tables. With only 1 table in the query the code generates correctly.
Previous version(1.1.0-alpha2) also generates code correctly.