sveltespot
sveltespot
@haaawk @LucioFranco Apologies for tagging. Could you help review and possibly merge this PR. It adds deserialization of a sqlite row into a struct that contains one of the fields...
Agreed, this is a major issue for us too at the moment. Our load tests suffer quite a bit because of this, as spawning multiple tenant DBs in a short...
We do face the same issues. Currently, our work around for this is to use `#[serde(alias = 'some_unique_name')]` for each of the fields of the struct. So considering your use...
The issue is not that sqlite quote functions aren't supported. This is evident from the fact that `cursor.execute("SELECT QUOTE(name) FROM user;")` is not failing. The issue is with the `fetchall`...
Also worth noting is that, this issue is only seen in case of remote db connections and not with in-memory or local replica connections.