Some queries always result in a stack overflow. The below code works using playhouse.postgres_ext.PostgresqlExtDatabase but doesn't if I switch to peewee_async.PostgresqlDatabase.
@skewty Thanks for reporting. Just probably this is because you're using peewee_async.PostgresqlDatabase but not peewee_asyncext. PostgresqlExtDatabase, which is closer replacement for sync extended version.
Some queries always result in a stack overflow. The below code works using
playhouse.postgres_ext.PostgresqlExtDatabase
but doesn't if I switch topeewee_async.PostgresqlDatabase
.This method will cause a stack overflow if I use
peewee_async.PostgresqlDatabase
: