Rafał Pitoń
Rafał Pitoń
@patrys the path here is roughly `Model.__init__()` -> `MoneyField.get_default()` -> `MoneyField.to_python()` -> `DecimalField.to_python`.
Workout I've found for the time being is to use custom batching select utility instead: ``` async for row in batching_fetch_all("SELECT * FROM table", batch=50): ... ```
It's postgresql, and I am using two setups for DB connection: - Test runner it's `database = Database(database_url, force_rollback=True)`. I have pytest fixture that wraps each test in `async with...
@vmarkovtsev AFAIR `iterate()` sets transaction on top of the lock, forcing connection reuse within the current async context.
Punting this. There's way to switch between those in both `misago-docker` and `v4`. This can be made into toggle in admin in future release, maybe after SPA, but thats separate...
Punting this task. I'll worry about those once I get into writing a new GraphQL API.
New task for tracking first pass on this feature: #1542
I guess the issue is `profile_fields` on user model being set to string when it should be a dict?
@jeroenbakker-atmind You mention doing a change through admin panel. Can you mention what change was that?
Good news: this doesn't seem to be a bug with Misago! Bad news: this error occurring means that database driver didn't retrieve valid hstore extension ID from `pg_type` table when...