Closed
Description
See #4015 (comment)
CREATE VIRTUAL TABLE myftstable2 USING fts5(something TEXT, nice TEXT);
selectFromTable2:
SELECT *
FROM myftstable2;
public fun selectFromTable2(): Query<Myftstable2> = selectFromTable2 { something, nice ->
Myftstable2( // the table is virtual and there is no Myftstable2 data class generated
something,
nice
)
}