You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Since some of my column/table names conflict with SQLite's list of reserved keywords I just started quoting every identifier. That causes all my streams to silently fail.
Example
@Query('SELECT * FROM "table_name"')
Stream<List<Data>> listAll();
Expected behavior
Stream event published when whenever rows are modified.
Actual behavior
Stream event is not published whenever table rows are modified.
Background
Since some of my column/table names conflict with SQLite's list of reserved keywords I just started quoting every identifier. That causes all my streams to silently fail.
Example
Expected behavior
Stream event published when whenever rows are modified.
Actual behavior
Stream event is not published whenever table rows are modified.
Cause
After lots of debugging I found the culprit. It's the code that parses the SQL query to extract the table names used.
Possible solutions
"quoted_table_names"
The text was updated successfully, but these errors were encountered: