Fixed
Status Update
Comments
el...@google.com <el...@google.com>
el...@google.com <el...@google.com> #2
A couple of questions:
1. Have you saw crash in real device or only in simulators?
2. Do you use dynamic feature for language ID?
1. Have you saw crash in real device or only in simulators?
2. Do you use dynamic feature for language ID?
ap...@google.com <ap...@google.com> #3
Tested on Android 12 Emulator with custom executor, but cannot repro this issue.
Description
Component used: Room. Version used: 2.4. Devices/Android versions reproduced on: Android 11.
I am trying to get data with multimap .
This is a very simple
LEFT JOIN
using aLEFT JOIN
request such as in the documentation.But both my tables have the non-null field named "identifier". When you call
LEFT JOIN
query in SQLite, but there is no row in the second table, you will get NULL for ALL values of the second table (see screenshot). So, it seems Room just try to verify for null these null values. It is a bug. Room should return an empty list forList<PostEntity>
.DB schema:
Dao:
Error: