Change theme
Help
Press space for more information.
Show links for this issue (Shortcut: i, l)
Copy issue ID
Previous Issue (Shortcut: k)
Next Issue (Shortcut: j)
Sign in to use full features.
Vote: I am impacted
Notification menu
Refresh (Shortcut: Shift+r)
Go home (Shortcut: u)
Pending code changes (auto-populated)
View issue level access limits(Press Alt + Right arrow for more information)
Unintended behavior
View staffing
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.